summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/imivctl.hxx2
-rw-r--r--vcl/source/treelist/headbar.cxx4
-rw-r--r--vcl/source/treelist/treelistentry.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/control/imivctl.hxx b/vcl/source/control/imivctl.hxx
index 54a95ce42a1b..797cf6ebb9be 100644
--- a/vcl/source/control/imivctl.hxx
+++ b/vcl/source/control/imivctl.hxx
@@ -122,7 +122,7 @@ class SvxIconChoiceCtrl_Impl
Idle aVisRectChangedIdle;
Idle aCallSelectHdlIdle;
Size aVirtOutputSize;
- Size const aImageSize;
+ Size aImageSize;
Size aDefaultTextSize;
Size aOutputSize; // Pixel
VclPtr<SvtIconChoiceCtrl> pView;
diff --git a/vcl/source/treelist/headbar.cxx b/vcl/source/treelist/headbar.cxx
index a841223f3ee0..fead6923b20a 100644
--- a/vcl/source/treelist/headbar.cxx
+++ b/vcl/source/treelist/headbar.cxx
@@ -37,8 +37,8 @@ public:
sal_uInt16 mnId;
HeaderBarItemBits mnBits;
long mnSize;
- OString const maHelpId;
- Image const maImage;
+ OString maHelpId;
+ Image maImage;
OUString maOutText;
OUString maText;
OUString maHelpText;
diff --git a/vcl/source/treelist/treelistentry.cxx b/vcl/source/treelist/treelistentry.cxx
index d380866cfc7a..5ffd4428b758 100644
--- a/vcl/source/treelist/treelistentry.cxx
+++ b/vcl/source/treelist/treelistentry.cxx
@@ -151,7 +151,7 @@ namespace {
class FindByType
{
- SvLBoxItemType const meType;
+ SvLBoxItemType meType;
public:
explicit FindByType(SvLBoxItemType eType) : meType(eType) {}
bool operator() (const std::unique_ptr<SvLBoxItem>& rpItem) const