From 58f1da330127dd0faf236c2d51013ad27f8a5d59 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 1 Jan 2012 21:54:51 -0600 Subject: Fix kfile_elf GUI --- kfile-plugins/elf/kfile_elf.cpp | 4 ++-- 1 file 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("") + i18n("not set") + TQString(""); + 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("") + i18n("not set") + TQString(""); + iconListing = i18n("not set"); } appendItem(group2, "EmbeddedIcon", iconListing); -- cgit v1.2.1