summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-01 21:54:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-01 21:54:51 -0600
commit58f1da330127dd0faf236c2d51013ad27f8a5d59 (patch)
treeeb9b0938874407aa257e193daf8285b9a0d17e7a
parent8d9479136867b63702da98f33ecf1f122d62109f (diff)
downloadtdelibs-58f1da33.tar.gz
tdelibs-58f1da33.zip
Fix kfile_elf GUI
-rw-r--r--kfile-plugins/elf/kfile_elf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kfile-plugins/elf/kfile_elf.cpp b/kfile-plugins/elf/kfile_elf.cpp
index 73c30203c..dcc75081e 100644
--- a/kfile-plugins/elf/kfile_elf.cpp
+++ b/kfile-plugins/elf/kfile_elf.cpp
@@ -45,7 +45,7 @@ TQString elf_get_resource(libr_file *handle, char *section_name)
{
size_t buffer_size = 0;
char *buffer = NULL;
- TQString result = TQString("<i>") + i18n("not set") + TQString("</i>");
+ TQString result = i18n("not set");
/* Get the resource from the ELF binary */
if(!libr_size(handle, section_name, &buffer_size))
@@ -148,7 +148,7 @@ bool KElfPlugin::readInfo( KFileMetaInfo& info, uint what)
}
}
if (iconListing.isEmpty()) {
- iconListing = TQString("<i>") + i18n("not set") + TQString("</i>");
+ iconListing = i18n("not set");
}
appendItem(group2, "EmbeddedIcon", iconListing);