Prevent spurious translation warning from being emitted

pull/1/head
Timothy Pearson 10 years ago
parent ca8286c78c
commit 744ba277e9

@ -89,7 +89,8 @@ bool KDotDesktopPlugin::readInfo( KFileMetaInfo& info, uint )
s = file.readEntry("MountPoint");
if (!s.isEmpty()) appendItem(group, "Mount Point", s);
s = i18n(file.readEntry("FSType").local8Bit());
TQString fsType = file.readEntry("FSType");
s = ((fsType.stripWhiteSpace() != "") ? i18n(fsType.local8Bit()) : "");
if (!s.isEmpty()) appendItem(group, "File System", s);
appendItem(group, "Writable",

Loading…
Cancel
Save