diff options
-rw-r--r-- | sfx2/source/control/thumbnailview.cxx | 3 | ||||
-rw-r--r-- | sfx2/source/control/thumbnailviewacc.cxx | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sfx2/source/control/thumbnailview.cxx b/sfx2/source/control/thumbnailview.cxx index 92938eb888e0..111165b942a9 100644 --- a/sfx2/source/control/thumbnailview.cxx +++ b/sfx2/source/control/thumbnailview.cxx @@ -535,8 +535,9 @@ void ThumbnailView::ImplTracking( const Point& rPos, bool bRepeat ) } } -void ThumbnailView::ImplEndTracking( const Point& rPos, bool bCancel ) +void ThumbnailView::ImplEndTracking(const Point& /*rPos*/, bool const /*bCancel*/) { + //FIXME TODO } IMPL_LINK (ThumbnailView, OnFolderSelected, ThumbnailViewItem*, pItem) diff --git a/sfx2/source/control/thumbnailviewacc.cxx b/sfx2/source/control/thumbnailviewacc.cxx index 7fe5d42617c6..48a6ce98c967 100644 --- a/sfx2/source/control/thumbnailviewacc.cxx +++ b/sfx2/source/control/thumbnailviewacc.cxx @@ -545,6 +545,7 @@ void SAL_CALL ThumbnailViewAcc::deselectAccessibleChild( sal_Int32 nChildIndex ) // the specified child is currently selected. //FIXME TODO if (isAccessibleChildSelected(nChildIndex)) //FIXME TODO ; + (void) nChildIndex; } sal_Int64 SAL_CALL ThumbnailViewAcc::getSomething( const uno::Sequence< sal_Int8 >& rId ) throw( uno::RuntimeException ) |