summaryrefslogtreecommitdiffstats
path: root/kio/kio/tdelficon.cpp
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 /kio/kio/tdelficon.cpp
parentc5bca102dd4e45626e1e76b0684ef065935918ed (diff)
downloadtdelibs-6d74bae8a11865d0d3d373781de6cc95682f5cc4.tar.gz
tdelibs-6d74bae8a11865d0d3d373781de6cc95682f5cc4.zip
Add icon request ability
Diffstat (limited to 'kio/kio/tdelficon.cpp')
-rw-r--r--kio/kio/tdelficon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/kio/tdelficon.cpp b/kio/kio/tdelficon.cpp
index 6e1e68169..49ceffd24 100644
--- a/kio/kio/tdelficon.cpp
+++ b/kio/kio/tdelficon.cpp
@@ -69,7 +69,7 @@ TQString elf_get_resource(libr_file *handle, char *section_name)
/* 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;
+// kdWarning() << "failed to obtain ELF resource size: " << libr_errmsg() << endl;
return result;
}
/* Get the resource from the ELF file */
@@ -77,7 +77,7 @@ TQString elf_get_resource(libr_file *handle, char *section_name)
buffer[buffer_size] = 0;
if(!libr_read(handle, section_name, buffer))
{
- kdWarning() << "failed to obtain ELF resource: " << libr_errmsg() << endl;
+// kdWarning() << "failed to obtain ELF resource: " << libr_errmsg() << endl;
goto fail;
}
result = buffer;
@@ -86,4 +86,4 @@ fail:
free(buffer);
return result;
-} \ No newline at end of file
+}