summaryrefslogtreecommitdiff
path: root/sw/source/uibase/dialog
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/dialog')
-rw-r--r--sw/source/uibase/dialog/SignatureLineDialog.cxx2
-rw-r--r--sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx3
2 files changed, 2 insertions, 3 deletions
diff --git a/sw/source/uibase/dialog/SignatureLineDialog.cxx b/sw/source/uibase/dialog/SignatureLineDialog.cxx
index b574a7b455e4..c7832e4078e9 100644
--- a/sw/source/uibase/dialog/SignatureLineDialog.cxx
+++ b/sw/source/uibase/dialog/SignatureLineDialog.cxx
@@ -179,7 +179,7 @@ void SignatureLineDialog::Apply()
OUString SignatureLineDialog::getSignatureImage()
{
- OUString svg(
+ OUString const svg(
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg "
"xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" "
"xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" "
diff --git a/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx b/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx
index dd2ee979dad6..0b7daa49b5d7 100644
--- a/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx
+++ b/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx
@@ -774,9 +774,8 @@ bool SwSpellDialogChildWindow::FindNextDrawTextError_Impl(SwWrtShell& rSh)
std::unique_ptr<OutlinerView> pOutlView( new OutlinerView( &aTmpOutliner, &(rView.GetEditWin()) ) );
pOutlView->GetOutliner()->SetRefDevice( rSh.getIDocumentDeviceAccess().getPrinter( false ) );
aTmpOutliner.InsertView( pOutlView.get() );
- Point aPt;
Size aSize(1,1);
- tools::Rectangle aRect( aPt, aSize );
+ tools::Rectangle aRect( Point(), aSize );
pOutlView->SetOutputArea( aRect );
aTmpOutliner.SetText( *pParaObj );
aTmpOutliner.ClearModifyFlag();
plugin:nullptr (automatic rewrite)Stephan Bergmann 2015-10-05convert SAL_FRAME_STYLE to scoped enumNoel Grandin 2015-10-02loplugin:unusedmethods in vclNoel Grandin 2015-07-10loplugin:unusedmethods vcl(part2)Noel Grandin 2015-06-26vcl: fix Win32 deadlocks from SolarMutexReleaserMichael Stahl 2015-06-08loplugin:cstylecast: deal with remaining pointer castsStephan Bergmann 2015-05-17WaE in OSL_DEBUG_LEVEL > 1Caolán McNamara 2015-01-20Some more loplugin:cstylecast: vclStephan Bergmann 2015-01-19fdo#39440 vcl: reduce scope of local variablesMichael Weghorn 2015-01-07fdo#84938: convert STREAM_ #defines to 'enum class'Noel Grandin 2015-01-07fdo#84938: convert VCL_INPUT_ #defines to 'enum class'Noel Grandin 2014-12-04Move SalGenericData::GetSalDisplay() out of generic/gendata.hxxStephan Bergmann 2014-10-01fdo#82577: Handle KeyPressNoel Grandin