X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/58772e4992e1a0601bddbf76fddbf4bb916cf85e..e3141a349e438c71338085ea2e713e716ca2c613:/include/wx/gtk/filepicker.h diff --git a/include/wx/gtk/filepicker.h b/include/wx/gtk/filepicker.h index 7a9efccc53..50e533f9ee 100644 --- a/include/wx/gtk/filepicker.h +++ b/include/wx/gtk/filepicker.h @@ -25,20 +25,21 @@ // and from wxGenericDirButton classes !) //----------------------------------------------------------------------------- -#define FILEDIRBTN_OVERRIDES \ - /* NULL is because of a problem with destruction order which happens */ \ - /* if we pass GetParent(): in fact, this GTK native implementation */ \ - /* needs to create the dialog in ::Create() and not for each user request */ \ - /* in response to the user click as the generic implementation does */ \ - virtual wxWindow *GetDialogParent() \ - { \ - return NULL; \ - } \ - \ - virtual bool Destroy() \ - { \ - m_dialog->Destroy(); \ - return wxButton::Destroy(); \ +#define FILEDIRBTN_OVERRIDES \ + /* NULL is because of a problem with destruction order which happens */ \ + /* if we pass GetParent(): in fact, this GTK native implementation */ \ + /* needs to create the dialog in ::Create() and not for each user */ \ + /* request in response to the user click as the generic implementation */ \ + /* does. */ \ + virtual wxWindow *GetDialogParent() \ + { \ + return NULL; \ + } \ + \ + virtual bool Destroy() \ + { \ + m_dialog->Destroy(); \ + return wxButton::Destroy(); \ }