summaryrefslogtreecommitdiff
path: root/wx+/popup_dlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/popup_dlg.h')
-rw-r--r--wx+/popup_dlg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wx+/popup_dlg.h b/wx+/popup_dlg.h
index 7c5db159..892c7a83 100644
--- a/wx+/popup_dlg.h
+++ b/wx+/popup_dlg.h
@@ -8,7 +8,7 @@
#define POPUP_DLG_H_820780154723456
#ifdef ZEN_WIN
-#include <zen/win.h> //include before <wx/msw/wrapwin.h>
+ #include <zen/win.h> //include before <wx/msw/wrapwin.h>
#endif
#include <wx/window.h>
#include <wx/bitmap.h>
@@ -53,7 +53,7 @@ class ConfirmationDialog3;
struct PopupDialogCfg
{
- PopupDialogCfg& setIcon (const wxBitmap& bmp ) { icon = bmp; return *this; }
+ PopupDialogCfg& setIcon (const wxBitmap& bmp ) { icon = bmp; return *this; }
PopupDialogCfg& setTitle (const wxString& label) { title = label; return *this; }
PopupDialogCfg& setMainInstructions (const wxString& label) { textMain = label; return *this; } //set at least one of these!
PopupDialogCfg& setDetailInstructions(const wxString& label) { textDetail = label; return *this; } //
@@ -62,7 +62,7 @@ struct PopupDialogCfg
private:
friend class StandardPopupDialog;
- wxBitmap icon;
+ wxBitmap icon;
wxString title;
wxString textMain;
wxString textDetail;
bgstack15