summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/model/SlideSorterModel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/model/SlideSorterModel.cxx')
-rw-r--r--sd/source/ui/slidesorter/model/SlideSorterModel.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sd/source/ui/slidesorter/model/SlideSorterModel.cxx b/sd/source/ui/slidesorter/model/SlideSorterModel.cxx
index 7811c3b08e68..5b9f41fea0d8 100644
--- a/sd/source/ui/slidesorter/model/SlideSorterModel.cxx
+++ b/sd/source/ui/slidesorter/model/SlideSorterModel.cxx
@@ -106,12 +106,12 @@ namespace {
namespace {
-void collectUIInformation(const OUString& num,const OUString& action)
+void collectUIInformation(const OUString& num, const OUString& rAction)
{
EventDescription aDescription;
aDescription.aID = "impress_win_or_draw_win";
aDescription.aParameters = {{"POS", num}};
- aDescription.aAction = action;
+ aDescription.aAction = rAction;
aDescription.aKeyWord = "ImpressWindowUIObject";
aDescription.aParent = "MainWindow";
@@ -632,9 +632,8 @@ bool SlideSorterModel::DeleteSlide (const SdPage* pPage)
bMarkedSelected = (*iter)->HasState(PageDescriptor::ST_Selected);
maPageDescriptors.erase(iter);
UpdateIndices(nIndex);
- }
- if(nIndex>=0){
- collectUIInformation(OUString::number(nIndex+1),"Delete_Slide_or_Page");
+
+ collectUIInformation(OUString::number(nIndex + 1), "Delete_Slide_or_Page");
}
return bMarkedSelected;
}