]> git.mxchange.org Git - flightgear.git/commitdiff
puInitialize returns nothing.
authorfredb <fredb>
Tue, 20 May 2008 06:35:37 +0000 (06:35 +0000)
committerfredb <fredb>
Tue, 20 May 2008 06:35:37 +0000 (06:35 +0000)
src/Main/WindowSystemAdapter.cxx
src/Main/WindowSystemAdapter.hxx

index 14530b5bbbc34467ac1694d8d4472c5f1ca294c8..2739cd0452c1211a5aa253489a282b18d9c761f8 100644 (file)
@@ -111,7 +111,7 @@ void WindowSystemAdapter::puGetWindowSize(int* width, int* height)
     *height = traits->height;
 }
 
-bool WindowSystemAdapter::puInitialize()
+void WindowSystemAdapter::puInitialize()
 {
     puSetWindowFuncs(puGetWindow, 0, puGetWindowSize, 0);
     puRealInit();
index 5fe8052781f853151a5e435e68cb2f2c99e5d706..8683632b36de1cbc3dc131f7f0c86e70fc1df599 100644 (file)
@@ -119,7 +119,7 @@ public:
     /** Initialize the plib pui interface library. This might happen
      *in another thread and may be deferred.
      */
-    virtual bool puInitialize();
+    virtual void puInitialize();
     /** Returns true if pui initialization has finished.
      */
     template<typename T>