summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-06-27 14:50:44 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2016-08-18 02:39:09 +0200
commit495224ac15f261b369935aab7c7946235dcb887e (patch)
tree9f3ce4c1fc5bc6d324f5e2623ef8edfb4aaa0764
parent14bb8b72c6a0aa2b302bded1a0f608c45bac9271 (diff)
screenshots: rPath argument is now unused
Change-Id: Icd3c66b83419f25b198937b05ede9b22f1344726
-rw-r--r--sd/qa/unit/dialogs-test.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/qa/unit/dialogs-test.cxx b/sd/qa/unit/dialogs-test.cxx
index 8813c998ed5b..0578faca4ca0 100644
--- a/sd/qa/unit/dialogs-test.cxx
+++ b/sd/qa/unit/dialogs-test.cxx
@@ -107,7 +107,7 @@ private:
/// central methods: dialog creation and dumping to target directory (path)
VclAbstractDialog* createDialogByID(sal_uInt32 nID);
- void dumpDialogToPath(VclAbstractDialog& rDlg, const OUString& rPath);
+ void dumpDialogToPath(VclAbstractDialog& rDlg);
void saveScreenshot( VclAbstractDialog& rDlg);
public:
@@ -644,7 +644,7 @@ void SdDialogsTest::saveScreenshot(VclAbstractDialog& rDlg)
}
}
-void SdDialogsTest::dumpDialogToPath(VclAbstractDialog& rDlg, const OUString& rPath)
+void SdDialogsTest::dumpDialogToPath(VclAbstractDialog& rDlg)
{
// for dumping, a lossless format is needed. It may be seen if the created data
@@ -689,7 +689,7 @@ void SdDialogsTest::openAnyDialog()
if (pDlg)
{
- dumpDialogToPath(*pDlg, aTempTargetPath + "/" + OUString::number(a));
+ dumpDialogToPath(*pDlg);
delete pDlg;
}
}