summaryrefslogtreecommitdiff
path: root/plugins/PluginUpdater/src/unzipfile.cpp
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-08-02 14:10:10 +0000
committerRobert Pösel <robyer@seznam.cz>2013-08-02 14:10:10 +0000
commit0d29ccd59beb6b7493aaa1a14ef7f6c40b5174df (patch)
tree09e14fe31c400c97649b1250a3bc277114342b5b /plugins/PluginUpdater/src/unzipfile.cpp
parent0517871b91bd2e567a8fe294344225ec9247a632 (diff)
PluginUpdater:
- Fixed checking intervals - "check every xx" is now relative to last check, not to miranda start - Small cleanup - Version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@5550 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/unzipfile.cpp')
-rw-r--r--plugins/PluginUpdater/src/unzipfile.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/src/unzipfile.cpp b/plugins/PluginUpdater/src/unzipfile.cpp
index 019c3261a3..189d3ff452 100644
--- a/plugins/PluginUpdater/src/unzipfile.cpp
+++ b/plugins/PluginUpdater/src/unzipfile.cpp
@@ -52,9 +52,6 @@ bool extractCurrentFile(unzFile uf, TCHAR *ptszDestPath, TCHAR *ptszBackPath)
if (err != UNZ_OK)
return false;
- if (!opts.bUpdateIcons && !_strnicmp(filename, "Icons/", 6))
- return true;
-
for (char *p = strchr(filename, '/'); p; p = strchr(p+1, '/'))
*p = '\\';