]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/gauge.cpp
Improve validation of wxCheckBox styles.
[wxWidgets.git] / src / gtk1 / gauge.cpp
index a68d74215fdda2e530508050cf079d6a0a8fb5ec..4c6fcb52783e00f3c433a57211686aab73514076 100644 (file)
@@ -60,7 +60,7 @@ bool wxGauge::Create( wxWindow *parent,
 void wxGauge::DoSetGauge()
 {
     wxASSERT_MSG( 0 <= m_gaugePos && m_gaugePos <= m_rangeMax,
-                  _T("invalid gauge position in DoSetGauge()") );
+                  wxT("invalid gauge position in DoSetGauge()") );
 
     gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget),
                              m_rangeMax ? ((float)m_gaugePos)/m_rangeMax : 0.);
@@ -88,7 +88,7 @@ void wxGauge::SetRange( int range )
 
 void wxGauge::SetValue( int pos )
 {
-    wxCHECK_RET( pos <= m_rangeMax, _T("invalid value in wxGauge::SetValue()") );
+    wxCHECK_RET( pos <= m_rangeMax, wxT("invalid value in wxGauge::SetValue()") );
 
     m_gaugePos = pos;