#define wxGAUGE_EMULATE_INDETERMINATE_MODE 0
#endif
-extern WXDLLEXPORT_DATA(const char) wxGaugeNameStr[];
+extern WXDLLIMPEXP_DATA_CORE(const char) wxGaugeNameStr[];
// ----------------------------------------------------------------------------
// wxGauge: a progress bar
// ----------------------------------------------------------------------------
-class WXDLLEXPORT wxGaugeBase : public wxControl
+class WXDLLIMPEXP_CORE wxGaugeBase : public wxControl
{
public:
wxGaugeBase() { m_rangeMax = m_gaugePos = 0; }
virtual void SetBezelFace(int w);
virtual int GetBezelFace() const;
- // overriden base class virtuals
+ // overridden base class virtuals
virtual bool AcceptsFocus() const { return false; }
protected:
int m_nDirection; // can be wxRIGHT or wxLEFT
#endif
- DECLARE_NO_COPY_CLASS(wxGaugeBase)
+ wxDECLARE_NO_COPY_CLASS(wxGaugeBase);
};
#if defined(__WXUNIVERSAL__)
#elif defined(__WXGTK__)
#include "wx/gtk1/gauge.h"
#elif defined(__WXMAC__)
- #include "wx/mac/gauge.h"
+ #include "wx/osx/gauge.h"
#elif defined(__WXCOCOA__)
#include "wx/cocoa/gauge.h"
#elif defined(__WXPM__)