]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't hardcode wxPreviewControlBar size in print preview code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Jan 2011 15:57:30 +0000 (15:57 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 3 Jan 2011 15:57:30 +0000 (15:57 +0000)
For some reason the control bar height was hard coded to 40 pixels which could
be not enough to use the buttons of the appropriate size. Don't hardcode its
size any more and let the sizer determine it instead.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/prntbase.cpp

index 5828c679774af967de37b8e311eb6acc00efac49..be09647180a7b19a232c562b0a3fcaa2b7f0c4c0 100644 (file)
@@ -1400,8 +1400,6 @@ private:
 
 void wxPreviewControlBar::CreateButtons()
 {
 
 void wxPreviewControlBar::CreateButtons()
 {
-    SetSize(0, 0, 400, 40);
-
     SizerWithButtons sizer(this);
 
     // Print button group (a single button).
     SizerWithButtons sizer(this);
 
     // Print button group (a single button).
@@ -1614,7 +1612,7 @@ void wxPreviewFrame::CreateControlBar()
     if (m_printPreview->GetPrintoutForPrinting())
         buttons |= wxPREVIEW_PRINT;
 
     if (m_printPreview->GetPrintoutForPrinting())
         buttons |= wxPREVIEW_PRINT;
 
-    m_controlBar = new wxPreviewControlBar(m_printPreview, buttons, this, wxPoint(0,0), wxSize(400, 40));
+    m_controlBar = new wxPreviewControlBar(m_printPreview, buttons, this);
     m_controlBar->CreateButtons();
 }
 
     m_controlBar->CreateButtons();
 }