summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-05 17:34:01 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-05 17:39:18 +0300
commita8e65dcd93202cfaa52272a811dc5374dbc88593 (patch)
tree15c7f2cf77d971166ce68de46f91993ba05760f3 /svtools
parentc395e3f96a3a61e1b9d9d00af2a9fd230168ccfa (diff)
WaE: type name first seen using 'class' now seen using 'struct'
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/ctrlbox.cxx6
-rw-r--r--svtools/source/control/headbar.cxx3
2 files changed, 6 insertions, 3 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx
index 7e606bbbf472..3857862bd0ea 100644
--- a/svtools/source/control/ctrlbox.cxx
+++ b/svtools/source/control/ctrlbox.cxx
@@ -76,8 +76,9 @@ using namespace ::com::sun::star;
// - ImplColorListData -
// --------------------
-struct ImplColorListData
+class ImplColorListData
{
+public:
Color aColor;
sal_Bool bColor;
@@ -975,8 +976,9 @@ void LineListBox::DataChanged( const DataChangedEvent& rDCEvt )
// FontNameBox
// ===================================================================
-struct ImplFontNameListData
+class ImplFontNameListData
{
+public:
FontInfo maInfo;
sal_uInt16 mnType;
diff --git a/svtools/source/control/headbar.cxx b/svtools/source/control/headbar.cxx
index 1c48b33cf344..77e067961aec 100644
--- a/svtools/source/control/headbar.cxx
+++ b/svtools/source/control/headbar.cxx
@@ -40,8 +40,9 @@
// =======================================================================
-struct ImplHeadItem
+class ImplHeadItem
{
+public:
sal_uInt16 mnId;
HeaderBarItemBits mnBits;
long mnSize;