projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
removed spurious #endif
[wxWidgets.git]
/
src
/
os2
/
dirdlg.cpp
diff --git
a/src/os2/dirdlg.cpp
b/src/os2/dirdlg.cpp
index c4a85eef972f6374b0ad9bb8ad4e111e748fb1b4..f833230fef09fb53dddbbe0246f3b66739920eb6 100644
(file)
--- a/
src/os2/dirdlg.cpp
+++ b/
src/os2/dirdlg.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: dirdlg.cpp
+// Name:
src/os2/
dirdlg.cpp
// Purpose: wxDirDialog
// Author: David Webster
// Modified by:
// Purpose: wxDirDialog
// Author: David Webster
// Modified by:
@@
-9,23
+9,19
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
- #pragma implementation "dirdlg.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#ifndef WX_PRECOMP
-#include <stdio.h>
-#include "wx/defs.h"
-#include "wx/utils.h"
-#include "wx/dialog.h"
#include "wx/dirdlg.h"
#include "wx/dirdlg.h"
+
+#ifndef WX_PRECOMP
+ #include <stdio.h>
+ #include "wx/utils.h"
+ #include "wx/dialog.h"
+ #include "wx/cmndata.h"
#endif
#include "wx/os2/private.h"
#endif
#include "wx/os2/private.h"
-#include "wx/cmndata.h"
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <string.h>
@@
-40,7
+36,7
@@
wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
long style, const wxPoint& pos)
{
m_message = message;
long style, const wxPoint& pos)
{
m_message = message;
- m_
dialog
Style = style;
+ m_
window
Style = style;
m_parent = parent;
m_path = defaultPath;
}
m_parent = parent;
m_path = defaultPath;
}
@@
-50,4
+46,3
@@
int wxDirDialog::ShowModal()
// TODO
return wxID_CANCEL;
}
// TODO
return wxID_CANCEL;
}
-