diff options
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/iconcdlg.cxx | 8 | ||||
-rw-r--r-- | cui/source/inc/iconcdlg.hxx | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx index 45e8dcb06531..982ed6c1ca2a 100644 --- a/cui/source/dialogs/iconcdlg.cxx +++ b/cui/source/dialogs/iconcdlg.cxx @@ -547,8 +547,7 @@ bool IconChoiceDialog::DeActivatePageImpl () if ( nRet & IconChoicePage::REFRESH_SET ) { - pSet = GetRefreshedSet(); - DBG_ASSERT( pSet, "GetRefreshedSet() liefert NULL" ); + RefreshInputSet(); // flag all pages to be newly initialized for ( size_t i = 0, nCount = maPageList.size(); i < nCount; ++i ) { @@ -723,10 +722,9 @@ void IconChoiceDialog::Start_Impl() ActivatePageImpl(); } -const SfxItemSet* IconChoiceDialog::GetRefreshedSet() +void IconChoiceDialog::RefreshInputSet() { - SAL_WARN( "cui.dialogs", "GetRefreshedSet not implemented" ); - return 0; + SAL_WARN( "cui.dialogs", "RefreshInputSet not implemented" ); } /********************************************************************** diff --git a/cui/source/inc/iconcdlg.hxx b/cui/source/inc/iconcdlg.hxx index 29317d3ecaf2..0c89da130c03 100644 --- a/cui/source/inc/iconcdlg.hxx +++ b/cui/source/inc/iconcdlg.hxx @@ -170,7 +170,7 @@ protected : inline SfxItemSet* GetInputSetImpl() { return (SfxItemSet*)pSet; } inline IconChoicePage* GetTabPage( sal_uInt16 nPageId ) { return ( GetPageData (nPageId)->pPage?GetPageData (nPageId)->pPage:NULL); } - const SfxItemSet* GetRefreshedSet(); + void RefreshInputSet(); void ActivatePageImpl (); bool DeActivatePageImpl (); |