#pragma hdrstop
#endif
-//#if !defined(__WIN32__) || !wxUSE_NATIVE_STATUSBAR
+#if wxUSE_STATUSBAR
#ifndef WX_PRECOMP
#include "wx/setup.h"
long x, y;
-#if defined(__WXPM__)
- long decsent;
-
- dc.GetTextExtent(text, &x, &y,&decsent);
- int xpos = rect.x + leftMargin;
- int ypos = (int) (((rect.height - y + 1) / 2 ) + rect.y + decsent ) ;
-
-#else
dc.GetTextExtent(text, &x, &y);
int xpos = rect.x + leftMargin;
int ypos = (int) (((rect.height - y) / 2 ) + rect.y + 0.5) ;
-#endif // __WXPM__
-
#if defined( __WXGTK__ ) || defined(__WXMAC__)
xpos++;
ypos++;
}
}
-//#endif // Win32 && wxUSE_NATIVE_STATUSBAR
+#endif // wxUSE_STATUSBAR