diff options
author | Rafael Dominguez <venccsralph@gmail.com> | 2012-08-08 20:51:21 -0430 |
---|---|---|
committer | Rafael Dominguez <venccsralph@gmail.com> | 2012-08-10 17:12:27 -0430 |
commit | c919a21c1a7e480eb4ffbd26353c0a6bf9aafb4b (patch) | |
tree | acfd12cd967452dc2161159d4aba859483992967 /sfx2 | |
parent | ec412c3192d41e4ee527dbdfefe5760da1098335 (diff) |
Rename unselectItems -> deselectItems.
Change-Id: Ie9ad44077df03ba8e5e4edb4068982a0f8af353b
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/thumbnailview.hxx | 4 | ||||
-rw-r--r-- | sfx2/source/control/thumbnailview.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/templatedlg.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/inc/sfx2/thumbnailview.hxx b/sfx2/inc/sfx2/thumbnailview.hxx index 7eebe5dc0514..b2d02e81675c 100644 --- a/sfx2/inc/sfx2/thumbnailview.hxx +++ b/sfx2/inc/sfx2/thumbnailview.hxx @@ -225,11 +225,11 @@ public: /** * - * @brief unselect all current selected items. + * @brief deselect all current selected items. * **/ - void unselectItems (); + void deselectItems (); rtl::OUString GetItemText( sal_uInt16 nItemId ) const; diff --git a/sfx2/source/control/thumbnailview.cxx b/sfx2/source/control/thumbnailview.cxx index 905713273d5e..fe886a84bbc3 100644 --- a/sfx2/source/control/thumbnailview.cxx +++ b/sfx2/source/control/thumbnailview.cxx @@ -1057,7 +1057,7 @@ void ThumbnailView::deselectItem(const sal_uInt16 nItemId) } } -void ThumbnailView::unselectItems() +void ThumbnailView::deselectItems() { for (size_t i = 0, n = mItemList.size(); i < n; ++i) { diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx index 4880f13ce20f..d2d263a75d36 100644 --- a/sfx2/source/doc/templatedlg.cxx +++ b/sfx2/source/doc/templatedlg.cxx @@ -1154,7 +1154,7 @@ void SfxTemplateManagerDlg::localSearchMoveTo(sal_uInt16 nMenuId) } // Deselect all items and update search results - mpSearchView->unselectItems(); + mpSearchView->deselectItems(); SearchUpdateHdl(mpSearchEdit); } |