diff options
-rw-r--r-- | kfile-plugins/elf/kfile_elf.cpp | 4 |
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); |