]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/choice_osx.cpp
make sure that code is always available when compiling for 10.4, whatever flavour
[wxWidgets.git] / src / osx / choice_osx.cpp
index 1481b1419cf06f34c5524fb2345895295116e2e7..f871ed3d262d0aa5fc65973c7f072d71af69a929 100644 (file)
@@ -169,12 +169,12 @@ void wxChoice::DoClear()
 // ----------------------------------------------------------------------------
 int wxChoice::GetSelection() const
 {
-    return m_peer->GetValue() ;
+    return m_peer->GetValue();
 }
 
 void wxChoice::SetSelection( int n )
 {
-    m_peer->SetValue( n ) ;
+    m_peer->SetValue( n );
 }
 
 // ----------------------------------------------------------------------------
@@ -241,7 +241,7 @@ bool wxChoice::HandleClicked( double timestampsec )
         event.SetInt( n );
         event.SetString( GetStringSelection() );
         event.SetEventObject( this );
-
+        
         if ( HasClientObjectData() )
             event.SetClientObject( GetClientObject( n ) );
         else if ( HasClientUntypedData() )