wxUSE_STATLINE fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28401 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-22 18:47:17 +00:00
parent 339983ff62
commit 8833e26cbd
2 changed files with 6 additions and 0 deletions

View File

@@ -219,7 +219,9 @@ MyFrame::MyFrame(wxFrame *frame)
pToolBar->AddSeparator();
pToolBar->AddTool( 1002, wxString(wxT(BMP_DIR)) + wxT("open.bmp") );
pToolBar->AddTool( 1003, wxString(wxT(BMP_DIR)) + wxT("save.bmp") );
#if wxUSE_STATLINE
pToolBar->AddSeparator(new wxMySeparatorLine(pToolBar, wxID_ANY));
#endif // wxUSE_STATLINE
pToolBar->AddTool( 1004, wxString(wxT(BMP_DIR)) + wxT("cut.bmp") );
pToolBar->AddTool( 1005, wxString(wxT(BMP_DIR)) + wxT("copy.bmp") );
pToolBar->AddTool( 1006, wxString(wxT(BMP_DIR)) + wxT("paste.bmp") );
@@ -243,6 +245,7 @@ MyFrame::~MyFrame()
}
#define LINE_SIZE 3
#if wxUSE_STATLINE
void wxMySeparatorLine::DoSetSize( int x, int y,
int width, int height,
int sizeFlags)
@@ -260,3 +263,4 @@ void wxMySeparatorLine::DoSetSize( int x, int y,
wxStaticLine::DoSetSize(x, y, width, height, sizeFlags);
}
#endif // wxUSE_STATLINE

View File

@@ -52,6 +52,7 @@ public:
DECLARE_EVENT_TABLE()
};
#if wxUSE_STATLINE
/*
* Quick example of your own Separator class...
*/
@@ -69,6 +70,7 @@ protected:
int width, int height,
int sizeFlags = wxSIZE_AUTO);
};
#endif // wxUSE_STATLINE
#endif