]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/filepicker.h
remove unused variable assignment, closes #14928
[wxWidgets.git] / include / wx / gtk / filepicker.h
index 14267d626017c7ef749a18cddde702a35b443568..68a59090e02d4ad9060f3b61bf29db07f082cf4d 100644 (file)
@@ -107,8 +107,6 @@ public:     // overrides
     FILEDIRBTN_OVERRIDES
 
 protected:
-    virtual bool GTKShouldConnectSizeRequest() const { return false; }
-
     wxDialog *m_dialog;
 
 private:
@@ -178,13 +176,6 @@ public:     // overrides
     FILEDIRBTN_OVERRIDES
 
 protected:
-    // common part of all ctors
-    void Init()
-    {
-        m_dialog = NULL;
-        m_bIgnoreNextChange = false;
-    }
-
     wxDialog *m_dialog;
 
 public:    // used by the GTK callback only
@@ -194,6 +185,12 @@ public:    // used by the GTK callback only
     void GTKUpdatePath(const char *gtkpath);
 
 private:
+    void Init()
+    {
+        m_dialog = NULL;
+        m_bIgnoreNextChange = false;
+    }
+
     DECLARE_DYNAMIC_CLASS(wxDirButton)
 };