]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/filectrl.cpp
Correct bounding box calculation in wxGTK wxDC::DrawText().
[wxWidgets.git] / src / gtk / filectrl.cpp
index d4ff4dcdf9010a723489ee90dff2d51744b470de..1b00e343eef865058aa94b7620a9064223f9a2fd 100644 (file)
@@ -146,16 +146,16 @@ void wxGtkFileChooser::SetWildcard( const wxString& wildCard )
                 gtk_file_filter_set_name( filter, wxGTK_CONV_SYS( wildDescriptions[n] ) );
 
                 wxStringTokenizer exttok( wildFilters[n], wxT( ";" ) );
-                
-                int n = 1;
+
+                int n1 = 1;
                 while ( exttok.HasMoreTokens() )
                 {
                     wxString token = exttok.GetNextToken();
                     gtk_file_filter_add_pattern( filter, wxGTK_CONV_SYS( token ) );
-                    
-                    if (n == 1)
+
+                    if (n1 == 1)
                         m_wildcards.Add( token ); // Only add first pattern to list, used later when saving
-                    n++;
+                    n1++;
                 }
 
                 gtk_file_chooser_add_filter( chooser, filter );