summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/uibase/shells/drwbassh.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/uibase/shells/drwbassh.cxx b/sw/source/uibase/shells/drwbassh.cxx
index ebd1eb3ce705..c98e97eb7aba 100644
--- a/sw/source/uibase/shells/drwbassh.cxx
+++ b/sw/source/uibase/shells/drwbassh.cxx
@@ -653,17 +653,17 @@ void SwDrawBaseShell::Execute(SfxRequest const &rReq)
{
if (nResult == RET_OK)
{
- OUString aTitle;
- OUString aDescription;
- bool isDecorative;
+ OUString aNewTitle;
+ OUString aNewDescription;
+ bool newIsDecorative;
- pDlg->GetTitle(aTitle);
- pDlg->GetDescription(aDescription);
- pDlg->IsDecorative(isDecorative);
+ pDlg->GetTitle(aNewTitle);
+ pDlg->GetDescription(aNewDescription);
+ pDlg->IsDecorative(newIsDecorative);
- pSelected->SetTitle(aTitle);
- pSelected->SetDescription(aDescription);
- pSelected->SetDecorative(isDecorative);
+ pSelected->SetTitle(aNewTitle);
+ pSelected->SetDescription(aNewDescription);
+ pSelected->SetDecorative(newIsDecorative);
pSh->SetModified();
}