From 61c006ec8254e5c24b45ade543fea419d63a66ba Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 9 Oct 2006 07:41:03 +0000 Subject: [PATCH] Don't use toolbook for formatting dialog until we have icons Select first page git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/richtext/richtextformatdlg.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/richtext/richtextformatdlg.cpp b/src/richtext/richtextformatdlg.cpp index 3fed169..aeebc51 100644 --- a/src/richtext/richtextformatdlg.cpp +++ b/src/richtext/richtextformatdlg.cpp @@ -52,7 +52,7 @@ #include "richtextbulletspage.cpp" #include "richtextstylepage.cpp" -#ifdef __WXMAC__ +#if 0 // def __WXMAC__ #define wxRICHTEXT_USE_TOOLBOOK true #else #define wxRICHTEXT_USE_TOOLBOOK false @@ -211,6 +211,7 @@ bool wxRichTextFormattingDialogFactory::CreatePages(long pages, wxRichTextFormat int availablePageCount = GetPageIdCount(); int i; + bool selected = false; for (i = 0; i < availablePageCount; i ++) { int pageId = GetPageId(i); @@ -222,10 +223,12 @@ bool wxRichTextFormattingDialogFactory::CreatePages(long pages, wxRichTextFormat if (panel) { int imageIndex = GetPageImage(pageId); - dialog->GetBookCtrl()->AddPage(panel, title, false, imageIndex); + dialog->GetBookCtrl()->AddPage(panel, title, !selected, imageIndex); + selected = true; } } } + return true; } -- 2.7.4