diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-07-25 09:25:16 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-07-25 09:25:16 +0200 |
commit | c2c65a66955132f1e7310e2f62e9607efcc22a3e (patch) | |
tree | ec0b53e7223b11d303e7b124e307ccc02ddc8622 | |
parent | 4bfc4550d2e188ebd32d8aeeb0c30ed08acb13ed (diff) | |
download | tdelibs-c2c65a66955132f1e7310e2f62e9607efcc22a3e.tar.gz tdelibs-c2c65a66955132f1e7310e2f62e9607efcc22a3e.zip |
Fix re-read configuration from prior commit 4bfc4550
-rw-r--r-- | tdeio/tdefile/kpropertiesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeio/tdefile/kpropertiesdialog.cpp b/tdeio/tdefile/kpropertiesdialog.cpp index 0af252d1e..49f3359fd 100644 --- a/tdeio/tdefile/kpropertiesdialog.cpp +++ b/tdeio/tdefile/kpropertiesdialog.cpp @@ -2998,7 +2998,7 @@ KDevicePropsPlugin::KDevicePropsPlugin( KPropertiesDialog *_props ) : KPropsDlgP TQString unmountedStr = config.readEntry( "UnmountIcon" ); TQString fsType = config.readEntry("FSType"); - fileSystem->setText( (fsType.stripWhiteSpace() != "") ? i18n(config.readEntry("FSType").local8Bit()) : "" ); + fileSystem->setText( (fsType.stripWhiteSpace() != "") ? i18n(fsType.local8Bit()) : "" ); device->setEditText( deviceStr ); if ( !deviceStr.isEmpty() ) { |