From a7ac71e2445d2669532654179092b2ad67ce496f Mon Sep 17 00:00:00 2001 From: twanvl Date: Tue, 18 Jan 2011 19:53:33 +0000 Subject: [PATCH] set theme border also for StylingEditor git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1620 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/control/native_look_editor.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/control/native_look_editor.hpp b/src/gui/control/native_look_editor.hpp index 46442f56..43d15120 100644 --- a/src/gui/control/native_look_editor.hpp +++ b/src/gui/control/native_look_editor.hpp @@ -56,7 +56,7 @@ class NativeLookEditor : public DataEditor { /// Editor for set.data class SetInfoEditor : public NativeLookEditor { public: - SetInfoEditor(Window* parent, int id, long style = 0); + SetInfoEditor(Window* parent, int id, long style = wxBORDER_THEME); virtual Package& getStylePackage() const; protected: @@ -68,7 +68,7 @@ class SetInfoEditor : public NativeLookEditor { /// Editor for styling data class StylingEditor : public NativeLookEditor { public: - StylingEditor(Window* parent, int id, long style = 0); + StylingEditor(Window* parent, int id, long style = wxBORDER_THEME); /// Show the styling for given stylesheet in the editor void showStylesheet(const StyleSheetP& stylesheet); @@ -83,7 +83,7 @@ class StylingEditor : public NativeLookEditor { /// Editor for export options class ExportOptionsEditor : public NativeLookEditor { public: - ExportOptionsEditor(Window* parent, int id, long style = 0); + ExportOptionsEditor(Window* parent, int id, long style = wxBORDER_THEME); /// Show the options for given export template void showExport(const ExportTemplateP& export_template);