diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:27:15 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:27:15 -0600 |
commit | 5b6d393e0a2c88cce8f433607c091ae883ef54f9 (patch) | |
tree | 3c54f3e4a9d6fc2ac30a58e96c19ea878fa08459 /src/translators/csvimporter.cpp | |
parent | eb52f16dcfba98b043537ea3da6a1b08b8d51b19 (diff) | |
download | tellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.tar.gz tellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/translators/csvimporter.cpp')
-rw-r--r-- | src/translators/csvimporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/translators/csvimporter.cpp b/src/translators/csvimporter.cpp index 68e4789..ca3e7aa 100644 --- a/src/translators/csvimporter.cpp +++ b/src/translators/csvimporter.cpp @@ -202,7 +202,7 @@ Tellico::Data::CollPtr CSVImporter::collection() { } { - KConfigGroup config(KGlobal::config(), TQString::fromLatin1("ImportOptions - CSV")); + KConfigGroup config(TDEGlobal::config(), TQString::fromLatin1("ImportOptions - CSV")); config.writeEntry("Delimiter", m_delimiter); config.writeEntry("First Row Titles", m_firstRowHeader); } @@ -320,7 +320,7 @@ TQWidget* CSVImporter::widget(TQWidget* parent_, const char* name_) { l->addStretch(1); - KConfigGroup config(KGlobal::config(), TQString::fromLatin1("ImportOptions - CSV")); + KConfigGroup config(TDEGlobal::config(), TQString::fromLatin1("ImportOptions - CSV")); m_delimiter = config.readEntry("Delimiter", m_delimiter); m_firstRowHeader = config.readBoolEntry("First Row Titles", m_firstRowHeader); |