summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-07-26 11:18:41 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-07-26 11:18:41 +0000
commit8f2f0d2f61635154f9d6c4d8c32ab09fc0eaabdd (patch)
tree6be7852c64ea08212fbbb2051a27400af995e5d3
parent6e53dfca72b932c4bdcd7aa02ca62bf8b2630eac (diff)
fix for a broken regexp
git-svn-id: http://svn.miranda-ng.org/main/trunk@17134 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/SmileyAdd/src/smileys.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/smileys.cpp b/plugins/SmileyAdd/src/smileys.cpp
index 7024c5ed97..c2f70ffc31 100644
--- a/plugins/SmileyAdd/src/smileys.cpp
+++ b/plugins/SmileyAdd/src/smileys.cpp
@@ -460,8 +460,8 @@ bool SmileyPackType::LoadSmileyFileMSL(CMString &tbuf, bool onlyInfo, CMString &
L"(?:\\s*\"(.*)\")" // Smiley file name
L"(?:[\\s,]+(\\-?\\d+))" // Icon resource id
L"(?:[\\s,]+(R|S)?\"(.*?)\")" // Trigger text
- L"(?:[\\s,]+\"(.*?)\"?)" // Tooltip or insert text
- L"(?:[\\s,]+\"(.*?)\"?)", // Tooltip text
+ L"(?:[\\s,]+\"(.*?)\")?" // Tooltip or insert text
+ L"(?:[\\s,]+\"(.*?)\")?", // Tooltip text
_TPattern::MULTILINE_MATCHING);
SmileyVectorType hiddenSmileys;