diff options
Diffstat (limited to 'kplato')
-rw-r--r-- | kplato/kptfactory.cc | 6 | ||||
-rw-r--r-- | kplato/kptreportview.cc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptfactory.cc b/kplato/kptfactory.cc index 7e5c5405..6922ed2d 100644 --- a/kplato/kptfactory.cc +++ b/kplato/kptfactory.cc @@ -85,10 +85,10 @@ TDEInstance* Factory::global() // Add any application-specific resource directories here s_global->dirs()->addResourceType("kplato_template", - KStandardDirs::kde_default("data") + "kplato/templates/"); - s_global->dirs()->addResourceType( "expression", KStandardDirs::kde_default("data") + "kplato/expression/"); + TDEStandardDirs::kde_default("data") + "kplato/templates/"); + s_global->dirs()->addResourceType( "expression", TDEStandardDirs::kde_default("data") + "kplato/expression/"); s_global->dirs()->addResourceType("toolbar", - KStandardDirs::kde_default("data") + "koffice/toolbar/"); + TDEStandardDirs::kde_default("data") + "koffice/toolbar/"); // Tell the iconloader about share/apps/koffice/icons s_global->iconLoader()->addAppDir("koffice"); diff --git a/kplato/kptreportview.cc b/kplato/kptreportview.cc index edf1019d..24a541f4 100644 --- a/kplato/kptreportview.cc +++ b/kplato/kptreportview.cc @@ -217,7 +217,7 @@ void ReportView::initReportList() { //kdDebug()<<k_funcinfo<<endl; TQStringList list; m_reportList->clear(); - KStandardDirs std; + TDEStandardDirs std; TQStringList reportDesktopFiles = std.findAllResources("data", "kplato/reports/*.desktop", true, true); for (TQStringList::iterator it = reportDesktopFiles.begin(); it != reportDesktopFiles.end(); ++it) { KDesktopFile file((*it), true); |