summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbaccess/source/ui/control/tabletree.cxx9
-rw-r--r--dbaccess/source/ui/inc/tabletree.hxx5
-rw-r--r--include/sfx2/tabdlg.hxx6
-rw-r--r--include/sfx2/templateabstractview.hxx5
-rw-r--r--include/svtools/toolpanel/toolpaneldeck.hxx9
-rw-r--r--include/svtools/vclxaccessibleheaderbaritem.hxx1
-rw-r--r--include/svx/frmdirlbox.hxx1
-rw-r--r--include/vcl/ppdparser.hxx1
-rw-r--r--sfx2/source/control/templateabstractview.cxx12
-rw-r--r--sfx2/source/dialog/tabdlg.cxx25
-rw-r--r--svtools/source/control/vclxaccessibleheaderbaritem.cxx19
-rw-r--r--svtools/source/toolpanel/toolpaneldeck.cxx20
-rw-r--r--svx/source/accessibility/AccessibleTextHelper.cxx14
-rw-r--r--svx/source/dialog/frmdirlbox.cxx7
-rw-r--r--sw/inc/expfld.hxx2
-rw-r--r--sw/source/core/fields/fldlst.cxx30
-rw-r--r--unusedcode.easy13
-rw-r--r--vcl/generic/fontmanager/fontcache.cxx10
-rw-r--r--vcl/generic/fontmanager/fontmanager.cxx18
-rw-r--r--vcl/inc/fontcache.hxx1
-rw-r--r--vcl/inc/fontmanager.hxx2
-rw-r--r--vcl/unx/generic/printer/ppdparser.cxx10
22 files changed, 8 insertions, 212 deletions
diff --git a/dbaccess/source/ui/control/tabletree.cxx b/dbaccess/source/ui/control/tabletree.cxx
index d410b297ef07..81965a4e7608 100644
--- a/dbaccess/source/ui/control/tabletree.cxx
+++ b/dbaccess/source/ui/control/tabletree.cxx
@@ -83,15 +83,6 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeOTableTreeListBox(Window *p
return new OTableTreeListBox(pParent, nWinStyle);
}
-OTableTreeListBox::OTableTreeListBox( Window* pParent, const ResId& rResId, sal_Bool _bVirtualRoot)
- :OMarkableTreeListBox(pParent, rResId)
- ,m_xImageProvider( new ImageProvider )
- ,m_bVirtualRoot(_bVirtualRoot)
- ,m_bNoEmptyFolders( false )
-{
- implSetDefaultImages();
-}
-
void OTableTreeListBox::implSetDefaultImages()
{
ImageProvider aImageProvider;
diff --git a/dbaccess/source/ui/inc/tabletree.hxx b/dbaccess/source/ui/inc/tabletree.hxx
index 29728670e7f6..6bd14cffc426 100644
--- a/dbaccess/source/ui/inc/tabletree.hxx
+++ b/dbaccess/source/ui/inc/tabletree.hxx
@@ -50,11 +50,6 @@ public:
void init(bool bVirtualRoot) { m_bVirtualRoot = bVirtualRoot; }
- OTableTreeListBox(
- Window* pParent,
- const ResId& rResId,
- sal_Bool _bVirtualRoot );
-
typedef ::std::pair< OUString,sal_Bool> TTableViewName;
typedef ::std::vector< TTableViewName > TNames;
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index a34c06d128bd..24653e279933 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -146,12 +146,6 @@ public:
sal_uInt16 nPageCreateId ); // Identifier of the Factory Method to create the page
void AddTabPage( sal_uInt16 nId,
- CreateTabPage pCreateFunc, // != 0
- GetTabPageRanges pRangesFunc, // can be 0
- sal_Bool bItemsOnDemand = sal_False);
-
-
- void AddTabPage( sal_uInt16 nId,
const OUString &rRiderText,
CreateTabPage pCreateFunc, // != 0
GetTabPageRanges pRangesFunc, // can be 0
diff --git a/include/sfx2/templateabstractview.hxx b/include/sfx2/templateabstractview.hxx
index fc2df865e954..3be1cabe9783 100644
--- a/include/sfx2/templateabstractview.hxx
+++ b/include/sfx2/templateabstractview.hxx
@@ -80,9 +80,8 @@ class SFX2_DLLPUBLIC TemplateAbstractView : public ThumbnailView
{
public:
- TemplateAbstractView (Window *pParent, WinBits nWinStyle, bool bDisableTransientChildren);
- TemplateAbstractView ( Window* pParent, const ResId& rResId, bool bDisableTransientChildren = false );
- TemplateAbstractView ( Window* pParent );
+ TemplateAbstractView(Window *pParent, WinBits nWinStyle, bool bDisableTransientChildren);
+ TemplateAbstractView(Window* pParent);
virtual ~TemplateAbstractView ();
diff --git a/include/svtools/toolpanel/toolpaneldeck.hxx b/include/svtools/toolpanel/toolpaneldeck.hxx
index c4ed250a76ea..1bc2026183c6 100644
--- a/include/svtools/toolpanel/toolpaneldeck.hxx
+++ b/include/svtools/toolpanel/toolpaneldeck.hxx
@@ -151,12 +151,6 @@ namespace svt
::Window& GetPanelWindowAnchor();
const ::Window& GetPanelWindowAnchor() const;
- /** sets the window which should act as parent in the A11Y object hierarchy.
-
- Calling this method has no effect if CreateAccessible had always been called.
- */
- ::Window* GetAccessibleParentWindow() const;
-
// IToolPanelDeck
virtual size_t GetPanelCount() const;
virtual PToolPanel GetPanel( const size_t i_nPos ) const;
@@ -179,9 +173,6 @@ namespace svt
private:
::std::auto_ptr< ToolPanelDeck_Impl > m_pImpl;
-
- private:
- using Window::GetAccessibleParentWindow;
};
//........................................................................
diff --git a/include/svtools/vclxaccessibleheaderbaritem.hxx b/include/svtools/vclxaccessibleheaderbaritem.hxx
index e5c695074b2c..10a5c82ca5c5 100644
--- a/include/svtools/vclxaccessibleheaderbaritem.hxx
+++ b/include/svtools/vclxaccessibleheaderbaritem.hxx
@@ -57,7 +57,6 @@ private:
sal_Int32 m_nIndexInParent;
protected:
- DECL_LINK( WindowEventListener, VclSimpleEvent* );
virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent );
virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet );
diff --git a/include/svx/frmdirlbox.hxx b/include/svx/frmdirlbox.hxx
index 4fd3081781a9..dd13fc72044e 100644
--- a/include/svx/frmdirlbox.hxx
+++ b/include/svx/frmdirlbox.hxx
@@ -39,7 +39,6 @@ namespace svx {
class SVX_DLLPUBLIC FrameDirectionListBox : public ListBox
{
public:
- explicit FrameDirectionListBox( Window* pParent, const ResId& rResId );
explicit FrameDirectionListBox( Window* pParent, WinBits nBits );
virtual ~FrameDirectionListBox();
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx
index 11dfb7205884..aea233c7ba61 100644
--- a/include/vcl/ppdparser.hxx
+++ b/include/vcl/ppdparser.hxx
@@ -246,7 +246,6 @@ public:
int getFonts() const
{ return m_pFontList ? m_pFontList->countValues() : 0; }
- OUString getFont( int ) const;
OUString translateKey( const OUString& i_rKey,
diff --git a/sfx2/source/control/templateabstractview.cxx b/sfx2/source/control/templateabstractview.cxx
index ddaac09e4b0b..33e007da997b 100644
--- a/sfx2/source/control/templateabstractview.cxx
+++ b/sfx2/source/control/templateabstractview.cxx
@@ -137,18 +137,6 @@ TemplateAbstractView::TemplateAbstractView (Window *pParent, WinBits nWinStyle,
maFTName.Hide();
}
-TemplateAbstractView::TemplateAbstractView(Window *pParent, const ResId &rResId, bool bDisableTransientChildren)
- : ThumbnailView(pParent,rResId,bDisableTransientChildren),
- mnCurRegionId(0),
- maAllButton(this, SfxResId(BTN_ALL_TEMPLATES)),
- maFTName(this, SfxResId(FT_NAME))
-{
- maAllButton.Hide();
- maAllButton.SetStyle(maAllButton.GetStyle() | WB_FLATBUTTON);
- maAllButton.SetClickHdl(LINK(this,TemplateAbstractView,ShowRootRegionHdl));
- maFTName.Hide();
-}
-
TemplateAbstractView::TemplateAbstractView(Window *pParent)
: ThumbnailView(pParent),
mnCurRegionId(0),
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index d7e90524e32b..fb8856a2c14c 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -717,31 +717,6 @@ void SfxTabDialog::AddTabPage( sal_uInt16 nId, const OUString &rRiderText, sal_B
AddTabPage( nId, rRiderText, 0, 0, bItemsOnDemand, nPos );
}
-
-// -----------------------------------------------------------------------
-
-void SfxTabDialog::AddTabPage
-
-/* [Description]
-
- Adding a page to the dialogue. Must correspond to a entry in the
- TabControl in the resource of the dialogue.
-*/
-
-(
- sal_uInt16 nId, // Page ID
- CreateTabPage pCreateFunc, // Pointer to the Factory Method
- GetTabPageRanges pRangesFunc, // Pointer to the Method for quering
- // Ranges onDemand
- sal_Bool bItemsOnDemand // indicates whether the set of this page is
- // requested when created
-)
-{
- pImpl->aData.push_back(
- new Data_Impl( nId, pCreateFunc, pRangesFunc, bItemsOnDemand ) );
-}
-
-
/*
Adds a page to the dialog. The Name must correspond to a entry in the
TabControl in the dialog .ui
diff --git a/svtools/source/control/vclxaccessibleheaderbaritem.cxx b/svtools/source/control/vclxaccessibleheaderbaritem.cxx
index d5cbb0263c56..21b1728905d6 100644
--- a/svtools/source/control/vclxaccessibleheaderbaritem.cxx
+++ b/svtools/source/control/vclxaccessibleheaderbaritem.cxx
@@ -65,25 +65,6 @@ VCLXAccessibleHeaderBarItem::~VCLXAccessibleHeaderBarItem()
// -----------------------------------------------------------------------------
-IMPL_LINK( VCLXAccessibleHeaderBarItem, WindowEventListener, VclSimpleEvent*, pEvent )
-{
- DBG_CHKTHIS( VCLXAccessibleHeaderBarItem, 0 );
- DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "VCLXAccessibleHeaderBarItem::WindowEventListener: unknown window event!" );
-
- if ( pEvent && pEvent->ISA( VclWindowEvent ) )
- {
- DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "VCLXAccessibleHeaderBarItem::WindowEventListener: no window!" );
- if ( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() || ( pEvent->GetId() == VCLEVENT_OBJECT_DYING ) )
- {
- ProcessWindowEvent( *(VclWindowEvent*)pEvent );
- }
- }
-
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
void VCLXAccessibleHeaderBarItem::ProcessWindowEvent( const VclWindowEvent& )
{
}
diff --git a/svtools/source/toolpanel/toolpaneldeck.cxx b/svtools/source/toolpanel/toolpaneldeck.cxx
index 2653de04bc45..8564c1f457f9 100644
--- a/svtools/source/toolpanel/toolpaneldeck.cxx
+++ b/svtools/source/toolpanel/toolpaneldeck.cxx
@@ -73,7 +73,6 @@ namespace svt
,m_pDummyPanel( new DummyPanel )
,m_pLayouter()
,m_bInDtor( false )
- ,m_pAccessibleParent( NULL )
{
m_aPanels.AddListener( *this );
m_aPanelAnchor.Show();
@@ -118,9 +117,6 @@ namespace svt
bool FocusActivePanel();
- void SetAccessibleParentWindow( Window* i_pAccessibleParent );
- Window* GetAccessibleParentWindow() const { return m_pAccessibleParent; }
-
protected:
// IToolPanelDeckListener
virtual void PanelInserted( const PToolPanel& i_pPanel, const size_t i_nPosition );
@@ -141,7 +137,6 @@ namespace svt
PanelDeckListeners m_aListeners;
PDeckLayouter m_pLayouter;
bool m_bInDtor;
- Window* m_pAccessibleParent;
};
//--------------------------------------------------------------------
@@ -343,12 +338,6 @@ namespace svt
// are dying, and we already sent this notification in our dtor.
}
- //--------------------------------------------------------------------
- void ToolPanelDeck_Impl::SetAccessibleParentWindow( Window* i_pAccessibleParent )
- {
- m_pAccessibleParent = i_pAccessibleParent;
- }
-
//====================================================================
//= ToolPanelDeck
//====================================================================
@@ -516,15 +505,6 @@ namespace svt
}
//--------------------------------------------------------------------
- Window* ToolPanelDeck::GetAccessibleParentWindow() const
- {
- Window* pAccessibleParent( m_pImpl->GetAccessibleParentWindow() );
- if ( !pAccessibleParent )
- pAccessibleParent = Window::GetAccessibleParentWindow();
- return pAccessibleParent;
- }
-
- //--------------------------------------------------------------------
Reference< XWindowPeer > ToolPanelDeck::GetComponentInterface( sal_Bool i_bCreate )
{
Reference< XWindowPeer > xWindowPeer( Control::GetComponentInterface( sal_False ) );
diff --git a/svx/source/accessibility/AccessibleTextHelper.cxx b/svx/source/accessibility/AccessibleTextHelper.cxx
index 00d0263fcf8a..f2ec44059a86 100644
--- a/svx/source/accessibility/AccessibleTextHelper.cxx
+++ b/svx/source/accessibility/AccessibleTextHelper.cxx
@@ -76,20 +76,6 @@ using namespace ::com::sun::star::accessibility;
namespace accessibility
{
- Window* GetCurrentEditorWnd()
- {
- Window* pWin = NULL;
- SfxViewFrame* pFrame = SfxViewFrame::Current();
- if (pFrame)
- {
- const SfxViewShell * pViewShell = pFrame->GetViewShell();
- if(pViewShell)
- {
- pWin = pViewShell->GetWindow();
- }
- }
- return pWin;
- }
//------------------------------------------------------------------------
//
diff --git a/svx/source/dialog/frmdirlbox.cxx b/svx/source/dialog/frmdirlbox.cxx
index 0d977d9f6b09..d10a6bfd2864 100644
--- a/svx/source/dialog/frmdirlbox.cxx
+++ b/svx/source/dialog/frmdirlbox.cxx
@@ -38,13 +38,6 @@ inline SvxFrameDirection lclVoidToEnum( void* pDirection )
} // namespace
-// ============================================================================
-
-FrameDirectionListBox::FrameDirectionListBox( Window* pParent, const ResId& rResId ) :
- ListBox( pParent, rResId )
-{
-}
-
FrameDirectionListBox::FrameDirectionListBox( Window* pParent, WinBits nBits ) :
ListBox( pParent, nBits )
{
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx
index c9fbebd91321..f2e3eba573e7 100644
--- a/sw/inc/expfld.hxx
+++ b/sw/inc/expfld.hxx
@@ -375,8 +375,6 @@ public:
Compare TmpLst with current fields. */
sal_uInt16 BuildSortLst();
- void RemoveUnselectedFlds();
-
private:
SwEditShell* pSh;
_SetGetExpFlds* pSrtLst;
diff --git a/sw/source/core/fields/fldlst.cxx b/sw/source/core/fields/fldlst.cxx
index fae983f1d4f2..11857f798aaa 100644
--- a/sw/source/core/fields/fldlst.cxx
+++ b/sw/source/core/fields/fldlst.cxx
@@ -169,34 +169,4 @@ sal_uInt16 SwInputFieldList::BuildSortLst()
return pSrtLst->size();
}
-/// remove all fields outside of any selections from list
-void SwInputFieldList::RemoveUnselectedFlds()
-{
- _SetGetExpFlds* pNewLst = new _SetGetExpFlds();
-
- FOREACHPAM_START(pSh->GetCrsr())
- {
- for (sal_uInt16 i = 0; i < Count();)
- {
- _SetGetExpFld* pFld = (*pSrtLst)[i];
- SwPosition aPos(*PCURCRSR->GetPoint());
-
- pFld->GetPos( aPos );
-
- if (aPos >= *PCURCRSR->Start() && aPos < *PCURCRSR->End())
- {
- // field in selection
- pNewLst->insert( (*pSrtLst)[i] );
- pSrtLst->erase(i);
- }
- else
- i++;
- }
- }
- FOREACHPAM_END()
-
- delete pSrtLst;
- pSrtLst = pNewLst;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/unusedcode.easy b/unusedcode.easy
index 72b0e899a813..5b015d1bb32a 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -1,3 +1,4 @@
+(anonymous namespace)::hasNonEmpty(std::vector<double, std::allocator<double> > const&, int, int)
AddressWalker::pop()
BackingWindow::LinkStubOpenTemplateHdl(void*, void*)
BigInt::BigInt(unsigned int)
@@ -152,9 +153,11 @@ SwAccessiblePortionData::GetAttrFldType(int)
SwAccessibleTable::ClearSelectionCellCache()
SwAccessibleTable::SetTableData(SwAccessibleTableData_Impl*)
SwCntntFrm::DelFrms(SwCntntNode const&)
+SwExtraRedlineTbl::Contains(SwExtraRedline const*) const
+SwExtraRedlineTbl::Remove(SwExtraRedline const*)
SwFrmFmt::SetCaptionFmt(SwFrmFmt*)
-SwInputFieldList::RemoveUnselectedFlds()
SwPostItField::GetByName(SwDoc*, rtl::OUString const&)
+SwTableRowRedline::SwTableRowRedline(SwRedlineData const&, SwTableLine&)
SwViewImp::FireColumnChangeEvent(unsigned short, unsigned short)
SwViewImp::FirePageChangeEvent(unsigned short, unsigned short)
SwViewImp::FireSectionChangeEvent(unsigned short, unsigned short)
@@ -170,7 +173,6 @@ TypeManager::decompose(rtl::OUString const&, bool, rtl::OUString*, int*, std::ve
TypeManager::foundAtPrimaryProvider(rtl::OUString const&) const
TypeManager::loadProvider(rtl::OUString const&, bool)
UnoApiTest::closeDocument(com::sun::star::uno::Reference<com::sun::star::lang::XComponent>)
-VCLXAccessibleHeaderBarItem::LinkStubWindowEventListener(void*, void*)
ValueSet::ImplGetVisibleItem(unsigned short)
VclMultiLineEdit::IsRightToLeft() const
VclMultiLineEdit::SetTextSelectable(bool)
@@ -178,7 +180,6 @@ accessibility::AccessibleParaManager::Release(int)
accessibility::AccessibleShape::AccessibleShape(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&, com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> const&, accessibility::AccessibleShapeTreeInfo const&, int)
accessibility::Document::justifySelection(TextPaM&, TextPaM&)
accessibility::Document::notifySelectionChange(int, int)
-accessibility::GetCurrentEditorWnd()
apitest::CellProperties::testRotateReference()
apitest::CellProperties::testVertJustify()
apitest::DataPilotField::testAutoShowInfo()
@@ -330,9 +331,6 @@ oox::xls::FormulaParser::convertBoolToFormula(bool) const
oox::xls::WorkbookHelper::getDocShell()
oox::xls::WorksheetGlobals::getColumns(oox::ValueRange const&) const
oox::xls::WorksheetGlobals::getRows(oox::ValueRange const&) const
-psp::FontCache::markEmptyDir(int, bool)
-psp::PPDParser::getFont(int) const
-psp::PrintFontManager::getFontListWithFastInfo(std::list<psp::FastPrintFontInfo, std::allocator<psp::FastPrintFontInfo> >&)
registry::tools::Options::Options(char const*)
registry::tools::Options::badOption(char const*, char const*) const
registry::tools::Options::initOptions(std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&)
@@ -372,13 +370,14 @@ std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr<formula::Formu
std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr_ref<formula::FormulaTokenArray>)
std::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread>, std::allocator<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread> > >::reserve(unsigned long)
svl::SharedStringPool::SharedStringPool()
-svt::ToolPanelDeck_Impl::SetAccessibleParentWindow(Window*)
svx::frame::Style::Style(editeng::SvxBorderLine const&, double, unsigned short)
sw::access::SwAccessibleChild::GetAnchorPosition() const
utl::MediaDescriptor::PROP_DEEPDETECTION()
utl::toISO8601(com::sun::star::util::Time const&)
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, int)
writerfilter::WW8TableManager::WW8TableManager()
+writerfilter::dmapper::TrackChangesHandler::TrackChangesHandler(int)
+writerfilter::dmapper::TrackChangesHandler::getRedlineProperties() const
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, boost::shared_ptr<writerfilter::Reference<writerfilter::BinaryObj> >)
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, boost::shared_ptr<writerfilter::Reference<writerfilter::Properties> >)
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, rtl::OUString const&)
diff --git a/vcl/generic/fontmanager/fontcache.cxx b/vcl/generic/fontmanager/fontcache.cxx
index cbb899edeb9d..4644b7ab89af 100644
--- a/vcl/generic/fontmanager/fontcache.cxx
+++ b/vcl/generic/fontmanager/fontcache.cxx
@@ -741,14 +741,4 @@ void FontCache::createCacheDir( int nDirID )
m_aCache[nDirID].m_nTimestamp = (sal_Int64)aStat.st_mtime;
}
-/*
- * FontCache::markEmptyDir
- */
-void FontCache::markEmptyDir( int nDirID, bool bNoFiles )
-{
- createCacheDir( nDirID );
- m_aCache[nDirID].m_bNoFiles = bNoFiles;
- m_bDoFlush = true;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/generic/fontmanager/fontmanager.cxx b/vcl/generic/fontmanager/fontmanager.cxx
index cc3a32e7a18b..4f4d99b95a90 100644
--- a/vcl/generic/fontmanager/fontmanager.cxx
+++ b/vcl/generic/fontmanager/fontmanager.cxx
@@ -1527,24 +1527,6 @@ void PrintFontManager::fillPrintFontInfo( PrintFont* pFont, PrintFontInfo& rInfo
// -------------------------------------------------------------------------
-void PrintFontManager::getFontListWithFastInfo( ::std::list< FastPrintFontInfo >& rFonts )
-{
- rFonts.clear();
- ::std::list< fontID > aFontList;
- getFontList( aFontList );
-
- ::std::list< fontID >::iterator it;
- for( it = aFontList.begin(); it != aFontList.end(); ++it )
- {
- FastPrintFontInfo aInfo;
- aInfo.m_nID = *it;
- fillPrintFontInfo( getFont( *it ), aInfo );
- rFonts.push_back( aInfo );
- }
-}
-
-// -------------------------------------------------------------------------
-
bool PrintFontManager::getFontInfo( fontID nFontID, PrintFontInfo& rInfo ) const
{
PrintFont* pFont = getFont( nFontID );
diff --git a/vcl/inc/fontcache.hxx b/vcl/inc/fontcache.hxx
index abce7432fb15..777c896face3 100644
--- a/vcl/inc/fontcache.hxx
+++ b/vcl/inc/fontcache.hxx
@@ -72,7 +72,6 @@ public:
bool getFontCacheFile( int nDirID, const OString& rFile, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
void updateFontCacheEntry( const PrintFontManager::PrintFont*, bool bFlush );
- void markEmptyDir( int nDirID, bool bNoFiles = true );
// returns false for non cached directory
// a cached but empty directory will return true but not append anything
diff --git a/vcl/inc/fontmanager.hxx b/vcl/inc/fontmanager.hxx
index 94ce3b282553..f0d95f188bd1 100644
--- a/vcl/inc/fontmanager.hxx
+++ b/vcl/inc/fontmanager.hxx
@@ -339,8 +339,6 @@ public:
// returns the ids of all managed fonts.
void getFontList( std::list< fontID >& rFontIDs );
- // get the font list and fast font info.
- void getFontListWithFastInfo( std::list< FastPrintFontInfo >& rFonts );
// get font info for a specific font
bool getFontInfo( fontID nFontID, PrintFontInfo& rInfo ) const;
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx
index 83e8d4c3aa07..dc0c3f928575 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -1495,16 +1495,6 @@ void PPDParser::getDefaultResolution( int& rXRes, int& rYRes ) const
rYRes = 300;
}
-OUString PPDParser::getFont( int nFont ) const
-{
- if( ! m_pFontList )
- return OUString();
-
- if( nFont >=0 && nFont < m_pFontList->countValues() )
- return m_pFontList->getValue( nFont )->m_aOption;
- return OUString();
-}
-
OUString PPDParser::translateKey( const OUString& i_rKey,
const com::sun::star::lang::Locale& i_rLocale ) const
{