diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:56:39 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:56:39 -0500 |
commit | 829790146716bc30c2e98cf2a767e60f60e5143a (patch) | |
tree | 9ec044f1ff90653dc07bc9e50254ab56c61b7144 /libtdepim/komposer/core/prefsmodule.cpp | |
parent | 66914d2878a6cadacbaf6ceacdd74d2999e4114e (diff) | |
download | tdepim-829790146716bc30c2e98cf2a767e60f60e5143a.tar.gz tdepim-829790146716bc30c2e98cf2a767e60f60e5143a.zip |
Update XDG information in support of bug report 892.
Diffstat (limited to 'libtdepim/komposer/core/prefsmodule.cpp')
-rw-r--r-- | libtdepim/komposer/core/prefsmodule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtdepim/komposer/core/prefsmodule.cpp b/libtdepim/komposer/core/prefsmodule.cpp index e3fdc5824..5aed441a9 100644 --- a/libtdepim/komposer/core/prefsmodule.cpp +++ b/libtdepim/komposer/core/prefsmodule.cpp @@ -108,7 +108,7 @@ EditorSelection::readConfig() if ( !(*it)->hasServiceType( TQString::fromLatin1( "Komposer/Editor" ) ) ) continue; - TQString name = (*it)->property( "X-KDE-KomposerIdentifier" ).toString(); + TQString name = (*it)->property( "X-TDE-KomposerIdentifier" ).toString(); m_editorsCombo->insertItem( name ); if ( m_reference.contains( name ) ) m_editorsCombo->setCurrentItem( i ); @@ -118,7 +118,7 @@ EditorSelection::readConfig() void EditorSelection::writeConfig() { m_reference = m_services[ m_editorsCombo->currentText()]-> - property( "X-KDE-KomposerIdentifier" ).toString(); + property( "X-TDE-KomposerIdentifier" ).toString(); } void |