]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/statline.h
Added wxFopen to the MSLU code.
[wxWidgets.git] / include / wx / univ / statline.h
index 5896a480607ae4ddf83d82ff33bf527bd8c27ee3..c6419bb5135ca25cf371c52572813cb79872ebac 100644 (file)
@@ -8,8 +8,8 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-    #pragma interface "statline.h"
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
+    #pragma interface "univstatline.h"
 #endif
 
 #ifndef _WX_UNIV_STATLINE_H_
@@ -26,9 +26,9 @@ public:
                  wxCoord length,
                  long style = wxLI_HORIZONTAL)
     {
-        Create(parent, -1, pos,
-               style & wxLI_VERTICAL ? wxSize(-1, length)
-                                     : wxSize(length, -1),
+        Create(parent, wxID_ANY, pos,
+               style & wxLI_VERTICAL ? wxSize(wxDefaultCoord, length)
+                                     : wxSize(length, wxDefaultCoord),
                style);
     }