summaryrefslogtreecommitdiffstats
path: root/src/reportdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:27:15 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:27:15 -0600
commit5b6d393e0a2c88cce8f433607c091ae883ef54f9 (patch)
tree3c54f3e4a9d6fc2ac30a58e96c19ea878fa08459 /src/reportdialog.cpp
parenteb52f16dcfba98b043537ea3da6a1b08b8d51b19 (diff)
downloadtellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.tar.gz
tellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/reportdialog.cpp')
-rw-r--r--src/reportdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reportdialog.cpp b/src/reportdialog.cpp
index 3267a39..0600950 100644
--- a/src/reportdialog.cpp
+++ b/src/reportdialog.cpp
@@ -61,7 +61,7 @@ ReportDialog::ReportDialog(TQWidget* parent_, const char* name_/*=0*/)
hlay->addWidget(l);
// KStandardDirs::findAllResources(const char *type, const TQString &filter, bool recursive, bool uniq)
- TQStringList files = KGlobal::dirs()->findAllResources("appdata", TQString::fromLatin1("report-templates/*.xsl"),
+ TQStringList files = TDEGlobal::dirs()->findAllResources("appdata", TQString::fromLatin1("report-templates/*.xsl"),
false, true);
KSortableValueList<TQString, TQString> templates;
for(TQStringList::ConstIterator it = files.begin(); it != files.end(); ++it) {
@@ -195,7 +195,7 @@ void ReportDialog::slotSaveAs() {
TQString filter = i18n("*.html|HTML Files (*.html)") + TQChar('\n') + i18n("*|All Files");
KURL u = KFileDialog::getSaveURL(TQString(), filter, this);
if(!u.isEmpty() && u.isValid()) {
- KConfigGroup config(KGlobal::config(), "ExportOptions");
+ KConfigGroup config(TDEGlobal::config(), "ExportOptions");
bool encode = config.readBoolEntry("EncodeUTF8", true);
int oldOpt = m_exporter->options();