summaryrefslogtreecommitdiffstats
path: root/kfile-plugins
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-02 10:13:06 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-02 10:13:06 -0600
commit6d74bae8a11865d0d3d373781de6cc95682f5cc4 (patch)
treec25cebab1bcd8c11d9ebe1ad402681385469da97 /kfile-plugins
parentc5bca102dd4e45626e1e76b0684ef065935918ed (diff)
downloadtdelibs-6d74bae8a11865d0d3d373781de6cc95682f5cc4.tar.gz
tdelibs-6d74bae8a11865d0d3d373781de6cc95682f5cc4.zip
Add icon request ability
Diffstat (limited to 'kfile-plugins')
-rw-r--r--kfile-plugins/elf/kfile_elf.cpp30
1 files changed, 1 insertions, 29 deletions
diff --git a/kfile-plugins/elf/kfile_elf.cpp b/kfile-plugins/elf/kfile_elf.cpp
index a26a6804b..2357f0617 100644
--- a/kfile-plugins/elf/kfile_elf.cpp
+++ b/kfile-plugins/elf/kfile_elf.cpp
@@ -41,34 +41,6 @@ typedef unsigned long uint32_t;
typedef unsigned short uint16_t;
#endif
-TQString elf_get_resource(libr_file *handle, char *section_name)
-{
- size_t buffer_size = 0;
- char *buffer = NULL;
- TQString result;
-
- /* Get the resource from the ELF binary */
- if(!libr_size(handle, section_name, &buffer_size))
- {
- kdWarning() << "failed to obtain ELF resource size: " << libr_errmsg() << endl;
- return result;
- }
- /* Get the resource from the ELF file */
- buffer = (char *) malloc(buffer_size+1);
- buffer[buffer_size] = 0;
- if(!libr_read(handle, section_name, buffer))
- {
- kdWarning() << "failed to obtain ELF resource: " << libr_errmsg() << endl;
- goto fail;
- }
- result = buffer;
-
-fail:
- free(buffer);
-
- return result;
-}
-
typedef KGenericFactory<KElfPlugin> ElfFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_elf, ElfFactory( "kfile_elf" ))
@@ -96,7 +68,7 @@ KElfPlugin::KElfPlugin(TQObject *parent, const char *name,
item = addItemInfo(group, "Product", i18n("Product"), TQVariant::String);
item = addItemInfo(group, "Organization", i18n("Organization"), TQVariant::String);
item = addItemInfo(group, "Version", i18n("Version"), TQVariant::String);
- item = addItemInfo(group, "DateTime", i18n("Creation Date/Time"), TQVariant::String);
+ item = addItemInfo(group, "DateTime", i18n("Compilation Date/Time"), TQVariant::String);
item = addItemInfo(group, "SystemIcon", i18n("Requested Icon"), TQVariant::String);
item = addItemInfo(group, "Notes", i18n("Comments"), TQVariant::String);