]> git.saurik.com Git - wxWidgets.git/commitdiff
fix warning about int->bool conversion; wrap long lines to 80 columns
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 19 Sep 2007 11:39:26 +0000 (11:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 19 Sep 2007 11:39:26 +0000 (11:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/filectrlg.h

index f4508e5e0277b6768a06090c9b983775570b4ac9..307cde3c2996de937c18664b9434f4ac8dbc917d 100644 (file)
@@ -201,7 +201,8 @@ public:
                         const wxString& name = wxFileCtrlNameStr )
     {
         m_ignoreChanges = false;
-        Create( parent, id, defaultDirectory, defaultFilename, wildCard, style, pos, size, name );
+        Create(parent, id, defaultDirectory, defaultFilename, wildCard,
+               style, pos, size, name );
     }
 
     virtual ~wxGenericFileCtrl() {}
@@ -221,11 +222,14 @@ public:
     virtual bool SetDirectory( const wxString& dir );
 
     // Selects a certain file.
-    // In case the filename specified isn't found/couldn't be shown with currently selected filter, false is returned and nothing happens
+    // In case the filename specified isn't found/couldn't be shown with
+    // currently selected filter, false is returned and nothing happens
     virtual bool SetFilename( const wxString& name );
 
-    // chdirs to a certain directory and selects a certain file.
-    // In case the filename specified isn't found/couldn't be shown with currently selected filter, false is returned and if directory exists it's chdir'ed to
+    // Changes to a certain directory and selects a certain file.
+    // In case the filename specified isn't found/couldn't be shown with
+    // currently selected filter, false is returned and if directory exists
+    // it's chdir'ed to
     virtual bool SetPath( const wxString& path );
 
     virtual wxString GetFilename() const;
@@ -236,7 +240,8 @@ public:
     virtual void GetFilenames( wxArrayString& files ) const;
     virtual int GetFilterIndex() const { return m_filterIndex; }
 
-    virtual bool HasMultipleFileSelection() const { return m_style & wxFC_MULTIPLE; }
+    virtual bool HasMultipleFileSelection() const
+        { return HasFlag(wxFC_MULTIPLE); }
     virtual void ShowHidden(bool show) { m_list->ShowHidden( show ); }
 
     void GoToParentDir();