class WXDLLEXPORT wxTopLevelWindowBase;
// Dialogs are created in a special way
-#define wxTLW_EX_DIALOG 0x00000008
+#define wxTOPLEVEL_EX_DIALOG 0x00000008
// Styles for ShowFullScreen
// (note that wxTopLevelWindow only handles wxFULLSCREEN_NOBORDER and
const wxPoint &pos, const wxSize &size,
long style, const wxString &name )
{
- SetExtraStyle(GetExtraStyle() | wxTLW_EX_DIALOG);
+ SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
return wxTopLevelWindow::Create(parent, id, title, pos, size, style, name);
}
const wxPoint &pos, const wxSize &size,
long style, const wxString &name )
{
- SetExtraStyle(GetExtraStyle() | wxTLW_EX_DIALOG);
+ SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
return wxTopLevelWindow::Create(parent, id, title, pos, size, style, name);
}
const wxPoint &pos, const wxSize &size,
long style, const wxString &name)
{
- SetExtraStyle(GetExtraStyle() | wxTLW_EX_DIALOG);
+ SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
// all dialogs should have tab traversal enabled
style |= wxTAB_TRAVERSAL;