Kaydet (Commit) f8c0e13b authored tarafından Thomas Arnhold's avatar Thomas Arnhold

Rename ValueItemList to ThumbnailValueItemList

The more common definition comes from svtools/valueset.hxx.

Make the difference clear.

Change-Id: I79b09f31007a4c00860fa97d8517a2b1f6aadeea
üst 6ddfb81c
...@@ -26,7 +26,7 @@ class HelpEvent; ...@@ -26,7 +26,7 @@ class HelpEvent;
class KeyEvent; class KeyEvent;
class DataChangedEvent; class DataChangedEvent;
class ScrollBar; class ScrollBar;
typedef ::std::vector< ThumbnailViewItem* > ValueItemList; typedef ::std::vector< ThumbnailViewItem* > ThumbnailValueItemList;
struct ThumbnailItemAttributes; struct ThumbnailItemAttributes;
class ThumbnailViewAcc; class ThumbnailViewAcc;
...@@ -299,9 +299,9 @@ protected: ...@@ -299,9 +299,9 @@ protected:
protected: protected:
ValueItemList mItemList; ThumbnailValueItemList mItemList;
ValueItemList mFilteredItemList; ///< Cache to store the filtered items ThumbnailValueItemList mFilteredItemList; ///< Cache to store the filtered items
ValueItemList::iterator mpStartSelRange; ThumbnailValueItemList::iterator mpStartSelRange;
ScrollBar* mpScrBar; ScrollBar* mpScrBar;
Rectangle maItemListRect; Rectangle maItemListRect;
long mnHeaderHeight; long mnHeaderHeight;
......
...@@ -993,7 +993,7 @@ void ThumbnailView::RemoveItem( sal_uInt16 nItemId ) ...@@ -993,7 +993,7 @@ void ThumbnailView::RemoveItem( sal_uInt16 nItemId )
} }
// delete item from the filter item list // delete item from the filter item list
ValueItemList::iterator it = mFilteredItemList.begin(); ThumbnailValueItemList::iterator it = mFilteredItemList.begin();
::std::advance( it, nPos ); ::std::advance( it, nPos );
if ((*it)->isSelected()) if ((*it)->isSelected())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment