diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-11 15:15:01 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-11 15:15:01 +0100 |
commit | 4bdf05b28d6584a1986ac7e5855d0260ff62930d (patch) | |
tree | aefa5c0085cc288761ef435f958b62732b71a6c3 /svx | |
parent | 32686b0d0a15a653f831d0645e5b7c1145860570 (diff) |
-Werror,-Wunevaluated-expression
Change-Id: Ibc717656d10a1a4e8ed3c7d170f2613abf299880
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdibrow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdibrow.cxx b/svx/source/svdraw/svdibrow.cxx index 646d2c064f32..b1bd6743ac16 100644 --- a/svx/source/svdraw/svdibrow.cxx +++ b/svx/source/svdraw/svdibrow.cxx @@ -968,7 +968,7 @@ void _SdrItemBrowserControl::SetAttributes(const SfxItemSet* pSet, const SfxItem aEntry.eState=eState; aEntry.nWhichId=nWhich; if (!IsInvalidItem(&rItem)) { - aEntry.pType=&typeid(&typeid(rItem)); + aEntry.pType=&typeid(rItem); aEntry.nMax=0x7FFFFFFF; aEntry.nMin=-aEntry.nMax; aEntry.nVal=-4711; |