diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 17:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:55:29 +0900 |
commit | ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86 (patch) | |
tree | 12e785c7a4e4cabbac960f2743de01a79ba77c2f /src/translators/bibteximporter.cpp | |
parent | 0ed59f2f132ebbe7b340ea93ea1de240e712473e (diff) | |
download | tellico-ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86.tar.gz tellico-ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/translators/bibteximporter.cpp')
-rw-r--r-- | src/translators/bibteximporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translators/bibteximporter.cpp b/src/translators/bibteximporter.cpp index e8c9709..006731b 100644 --- a/src/translators/bibteximporter.cpp +++ b/src/translators/bibteximporter.cpp @@ -46,7 +46,7 @@ BibtexImporter::BibtexImporter(const TQString& text_) : Importer(text_) BibtexImporter::~BibtexImporter() { bt_cleanup(); if(m_readUTF8) { - TDEConfigGroup config(kapp->config(), "Import Options"); + TDEConfigGroup config(tdeApp->config(), "Import Options"); config.writeEntry("Bibtex UTF8", m_readUTF8->isChecked()); } } @@ -206,7 +206,7 @@ Tellico::Data::CollPtr BibtexImporter::readCollection(const TQString& text, int if(showProgress && j%stepSize == 0) { ProgressManager::self()->setProgress(this, n*100 + 100*j/count); - kapp->processEvents(); + tdeApp->processEvents(); } } @@ -295,7 +295,7 @@ TQWidget* BibtexImporter::widget(TQWidget* parent_, const char* name_/*=0*/) { m_readLocale->setChecked(true); TQWhatsThis::add(m_readLocale, i18n("Read the imported file in the local encoding.")); - TDEConfigGroup config(kapp->config(), "Import Options"); + TDEConfigGroup config(tdeApp->config(), "Import Options"); bool useUTF8 = config.readBoolEntry("Bibtex UTF8", false); if(useUTF8) { m_readUTF8->setChecked(true); |