]> git.saurik.com Git - wxWidgets.git/commitdiff
got rid of ^Ms
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 14 Dec 2001 00:28:47 +0000 (00:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 14 Dec 2001 00:28:47 +0000 (00:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/gauge.cpp
src/gtk1/gauge.cpp

index b85ec70964b6de200a7ddcdf44f1f8863560bd71..917ab60307f40f5fa29652abd23ba6ae9680f2bd 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
@@ -29,28 +29,28 @@ bool wxGauge::Create( wxWindow *parent, wxWindowID id,  int range,
     long style, const wxValidator& validator, const wxString& name )
 {
     m_needParent = TRUE;
-  
+
     if (!PreCreation( parent, pos, size ) ||
         !CreateBase( parent, id, pos, size, style, validator, name ))
     {
         wxFAIL_MSG( wxT("wxGauge creation failed") );
-       return FALSE;
+        return FALSE;
     }
 
     m_rangeMax = range;
     m_gaugePos = 0;
     m_useProgressBar = TRUE;
-  
+
     m_widget = gtk_progress_bar_new();
     if( style & wxGA_VERTICAL)
         gtk_progress_bar_set_orientation( GTK_PROGRESS_BAR(m_widget) , GTK_PROGRESS_BOTTOM_TO_TOP );
-  
+
     m_parent->DoAddChild( this );
-  
+
     PostCreation();
-  
+
     Show( TRUE );
-    
+
     return TRUE;
 }
 
@@ -58,7 +58,7 @@ void wxGauge::SetRange( int r )
 {
     m_rangeMax = r;
     if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
-  
+
     gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
 }
 
@@ -66,7 +66,7 @@ void wxGauge::SetValue( int pos )
 {
     m_gaugePos = pos;
     if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
-  
+
     gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
 }
 
@@ -86,4 +86,5 @@ void wxGauge::ApplyWidgetStyle()
     gtk_widget_set_style( m_widget, m_widgetStyle );
 }
 
-#endif
+#endif // wxUSE_GAUGE
+
index b85ec70964b6de200a7ddcdf44f1f8863560bd71..917ab60307f40f5fa29652abd23ba6ae9680f2bd 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
@@ -29,28 +29,28 @@ bool wxGauge::Create( wxWindow *parent, wxWindowID id,  int range,
     long style, const wxValidator& validator, const wxString& name )
 {
     m_needParent = TRUE;
-  
+
     if (!PreCreation( parent, pos, size ) ||
         !CreateBase( parent, id, pos, size, style, validator, name ))
     {
         wxFAIL_MSG( wxT("wxGauge creation failed") );
-       return FALSE;
+        return FALSE;
     }
 
     m_rangeMax = range;
     m_gaugePos = 0;
     m_useProgressBar = TRUE;
-  
+
     m_widget = gtk_progress_bar_new();
     if( style & wxGA_VERTICAL)
         gtk_progress_bar_set_orientation( GTK_PROGRESS_BAR(m_widget) , GTK_PROGRESS_BOTTOM_TO_TOP );
-  
+
     m_parent->DoAddChild( this );
-  
+
     PostCreation();
-  
+
     Show( TRUE );
-    
+
     return TRUE;
 }
 
@@ -58,7 +58,7 @@ void wxGauge::SetRange( int r )
 {
     m_rangeMax = r;
     if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
-  
+
     gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
 }
 
@@ -66,7 +66,7 @@ void wxGauge::SetValue( int pos )
 {
     m_gaugePos = pos;
     if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
-  
+
     gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
 }
 
@@ -86,4 +86,5 @@ void wxGauge::ApplyWidgetStyle()
     gtk_widget_set_style( m_widget, m_widgetStyle );
 }
 
-#endif
+#endif // wxUSE_GAUGE
+