diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:57:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:57:41 +0900 |
commit | c327636f4934564a4f1f7c7ce3b6ab73eaec230d (patch) | |
tree | 54a98d7d0fa063b1ac0be810fc20f788aa3c7f9c /kaddressbook/xxport/csvimportdialog.cpp | |
parent | 8f878546e0a859e78dfc2c6ff7f08507347a76ea (diff) | |
download | tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.tar.gz tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kaddressbook/xxport/csvimportdialog.cpp')
-rw-r--r-- | kaddressbook/xxport/csvimportdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kaddressbook/xxport/csvimportdialog.cpp b/kaddressbook/xxport/csvimportdialog.cpp index 8bcb0ffa..4b0a1c9e 100644 --- a/kaddressbook/xxport/csvimportdialog.cpp +++ b/kaddressbook/xxport/csvimportdialog.cpp @@ -797,7 +797,7 @@ void CSVImportDialog::applyTemplate() for ( TQStringList::iterator it = list.begin(); it != list.end(); ++it ) { - KSimpleConfig config( *it, true ); + TDESimpleConfig config( *it, true ); if ( !config.hasGroup( "csv column map" ) ) continue; @@ -817,7 +817,7 @@ void CSVImportDialog::applyTemplate() if ( !ok ) return; - KSimpleConfig config( fileMap[ tmp ], true ); + TDESimpleConfig config( fileMap[ tmp ], true ); config.setGroup( "General" ); mDatePatternEdit->setText( config.readEntry( "DatePattern", "Y-M-D" ) ); uint numColumns = config.readUnsignedNumEntry( "Columns" ); |