Fixed OpenGL preflet, I missed an important part of its internationalization.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34777 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adrien Destugues 2009-12-26 19:49:54 +00:00
parent 1f37b29b5d
commit 5458cdeaf5
2 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,8 @@
* Artur Wyszynski <harakash@gmail.com>
*/
#include <Locale.h>
#include "OpenGLApp.h"
#include "OpenGLWindow.h"
@ -24,6 +26,7 @@ OpenGLApp::~OpenGLApp()
void
OpenGLApp::ReadyToRun()
{
be_locale->GetAppCatalog(&fCatalog);
fWindow = new OpenGLWindow();
fWindow->Show();

View File

@ -11,6 +11,7 @@
#include <Application.h>
#include <Catalog.h>
#include "OpenGLWindow.h"
@ -23,6 +24,7 @@ public:
private:
OpenGLWindow* fWindow;
BCatalog fCatalog;
};
#endif /* OPENGL_APP_H_ */