projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxUniv compilation fixes (patch 559620)
[wxWidgets.git]
/
include
/
wx
/
busyinfo.h
diff --git
a/include/wx/busyinfo.h
b/include/wx/busyinfo.h
index 37e7238cb6005ab094c4e505151ce833f827fe52..0050bfa08a5e3303cedf9c8f1636811f91b7678b 100644
(file)
--- a/
include/wx/busyinfo.h
+++ b/
include/wx/busyinfo.h
@@
-26,8
+26,8
@@
class WXDLLEXPORT wxInfoFrame : public wxFrame
{
class WXDLLEXPORT wxInfoFrame : public wxFrame
{
-
public:
-
wxInfoFrame(wxWindow *parent, const wxString& message);
+public:
+ wxInfoFrame(wxWindow *parent, const wxString& message);
};
};
@@
-39,12
+39,13
@@
class WXDLLEXPORT wxInfoFrame : public wxFrame
class WXDLLEXPORT wxBusyInfo : public wxObject
{
class WXDLLEXPORT wxBusyInfo : public wxObject
{
- public:
- wxBusyInfo(const wxString& message);
- ~wxBusyInfo();
+public:
+ wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
- private:
- wxInfoFrame *m_InfoFrame;
+ virtual ~wxBusyInfo();
+
+private:
+ wxInfoFrame *m_InfoFrame;
};
};