diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 17:20:38 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 17:20:38 -0500 |
commit | ff57382179e9b49b5b80872d237603611ff5ac13 (patch) | |
tree | 0248c85e56e25f88cf916e9bb363c362ee7afcb3 /tdeio/tdefile/kpropertiesdialog.cpp | |
parent | d46b1b9c643c4694ae5c58d38bf90d2578cc72d7 (diff) | |
download | tdelibs-ff57382179e9b49b5b80872d237603611ff5ac13.tar.gz tdelibs-ff57382179e9b49b5b80872d237603611ff5ac13.zip |
Second part of prior commit
Diffstat (limited to 'tdeio/tdefile/kpropertiesdialog.cpp')
-rw-r--r-- | tdeio/tdefile/kpropertiesdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeio/tdefile/kpropertiesdialog.cpp b/tdeio/tdefile/kpropertiesdialog.cpp index 8302f3080..0d2df33e0 100644 --- a/tdeio/tdefile/kpropertiesdialog.cpp +++ b/tdeio/tdefile/kpropertiesdialog.cpp @@ -4077,7 +4077,7 @@ TDEApplicationPropsPlugin::TDEApplicationPropsPlugin( KPropertiesDialog *_props TQString commentStr = config.readComment(); TQString genNameStr = config.readGenericName(); - TQStringList selectedTypes = config.readListEntry( "ServiceTypes" ); + TQStringList selectedTypes = config.readListEntry( "X-TDE-ServiceTypes" ); // For compatibility with KDE 1.x selectedTypes += config.readListEntry( "MimeType", ';' ); @@ -4195,7 +4195,7 @@ void TDEApplicationPropsPlugin::applyChanges() selectedTypes.append( extensionsList->text( i ) ); config.writeEntry( "MimeType", selectedTypes, ';' ); - config.writeEntry( "ServiceTypes", "" ); + config.writeEntry( "X-TDE-ServiceTypes", "" ); // hmm, actually it should probably be the contrary (but see also typeslistitem.cpp) TQString nameStr = nameEdit ? nameEdit->text() : TQString::null; |