summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-31 22:46:41 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-31 22:46:41 +0000
commita20a1d8e0c6f0710a475ff1fef0b325a62f8237a (patch)
tree61527746d5f2232761390e45059520fb3c6a8f04 /vcl
parentdrop unnecessary includes (diff)
downloadcore-a20a1d8e0c6f0710a475ff1fef0b325a62f8237a.tar.gz
core-a20a1d8e0c6f0710a475ff1fef0b325a62f8237a.zip
maUIOptions is a Sequence not a string
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/print3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx
index a51b039a286a..32ae196c146a 100644
--- a/vcl/source/gdi/print3.cxx
+++ b/vcl/source/gdi/print3.cxx
@@ -1336,7 +1336,7 @@ void PrinterController::setValue( const beans::PropertyValue& i_rValue )
void PrinterController::setUIOptions( const Sequence< beans::PropertyValue >& i_rOptions )
{
- DBG_ASSERT( mpImplData->maUIOptions.isEmpty(), "setUIOptions called twice !" );
+ DBG_ASSERT( mpImplData->maUIOptions.getLength() == 0, "setUIOptions called twice !" );
mpImplData->maUIOptions = i_rOptions;