many fixes; now the application correctly starts up

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-06 11:53:16 +00:00
parent 5e53c1c21e
commit 4bae10bdff
21 changed files with 501 additions and 279 deletions

View File

@@ -15,10 +15,10 @@
#define SCREENSHOTGEN_USE_AUI 0
class wxCtrlMaskOut;
class CtrlMaskOut;
class wxScreenshotFrame
class ScreenshotFrame
#if SCREENSHOTGEN_USE_AUI
: public AuiGUIFrame
#else
@@ -26,8 +26,8 @@ class wxScreenshotFrame
#endif
{
public:
wxScreenshotFrame(wxFrame *frame);
~wxScreenshotFrame();
ScreenshotFrame(wxFrame *frame);
~ScreenshotFrame();
protected: // event handlers
@@ -55,7 +55,7 @@ private:
// Data members
bool capturingRect;
wxCtrlMaskOut * m_maskout;
CtrlMaskOut * m_maskout;
};
#endif // WXSCREENSHOTMAIN_H