diff options
| author | Brian McGroarty <soft@lindenlab.com> | 2009-09-03 02:57:14 +0000 | 
|---|---|---|
| committer | Brian McGroarty <soft@lindenlab.com> | 2009-09-03 02:57:14 +0000 | 
| commit | ae6c3d7d6c49903596b13b220ae8afffd37568e3 (patch) | |
| tree | 94a77e272bee06661a54dc24a79a31c72aefe1b0 /indra | |
| parent | 295dfd43519136e24e8662ba883de19de309858d (diff) | |
build issue - const invariance in llplugintest/llmediaplugintest
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.cpp | 2 | ||||
| -rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.h | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index f668867a02..7869763302 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -283,7 +283,7 @@ void LLMediaPluginTest::bindTexture(GLuint texture, GLint row_length, GLint alig  ////////////////////////////////////////////////////////////////////////////////  // -bool LLMediaPluginTest::checkGLError(char *name) +bool LLMediaPluginTest::checkGLError(const char *name)  {  	bool result = false;  	GLenum error = glGetError(); diff --git a/indra/test_apps/llplugintest/llmediaplugintest.h b/indra/test_apps/llplugintest/llmediaplugintest.h index 2d0ba0e3f6..095a2ea3b3 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.h +++ b/indra/test_apps/llplugintest/llmediaplugintest.h @@ -87,7 +87,7 @@ class LLMediaPluginTest : public LLPluginClassMediaOwner  		void mouseMove( int x, int y );  		void bindTexture(GLuint texture, GLint row_length = 0, GLint alignment = 1); -		bool checkGLError(char *name = "OpenGL"); +		bool checkGLError(const char *name = "OpenGL");  		void drawGeometry( int panel );  		void startPanelHighlight( float red, float green, float blue, float line_width );  		void endPanelHighlight(); | 
