diff options
| author | 2010-05-08 18:07:27 +0000 | |
|---|---|---|
| committer | 2010-05-08 18:07:27 +0000 | |
| commit | 9b14b06c3b66f6ea3ebc8aff19a51a83a2f42797 (patch) | |
| tree | 9a9feb3a6fc1e03a27b611dd802355d43e8c8297 /src/modules | |
| parent | no-brain patch for #784 (diff) | |
| download | KVIrc-9b14b06c3b66f6ea3ebc8aff19a51a83a2f42797.tar.gz KVIrc-9b14b06c3b66f6ea3ebc8aff19a51a83a2f42797.tar.bz2 KVIrc-9b14b06c3b66f6ea3ebc8aff19a51a83a2f42797.zip | |
fixed infinite loop on corrupted theme installation (could cause a problem with themes containing empty files)
fixed theme error reporting
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4311 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/theme/themefunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/theme/themefunctions.cpp b/src/modules/theme/themefunctions.cpp index cc6963e55..c91760f3a 100644 --- a/src/modules/theme/themefunctions.cpp +++ b/src/modules/theme/themefunctions.cpp @@ -293,7 +293,7 @@ namespace KviThemeFunctions { QString szErr2 = r.lastError(); KviQString::sprintf(szError,__tr2qs_ctx("Failed to unpack the selected file: %Q","theme"),&szErr2); - return true; + return false; } } |
