summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-06-25 19:35:27 +0000
committerRobert Pösel <robyer@seznam.cz>2013-06-25 19:35:27 +0000
commit6c72ca6613bcd485d28a87558c1f25d2b5395018 (patch)
tree245eb2bda70dbb30dfde9c979113fcbc59fff3c5
parent961eab36d13c6951d1ae046c20d767ac87ad0a89 (diff)
one more lpgen fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5134 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--tools/lpgen/lpgen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js
index c580722019..1246345b62 100644
--- a/tools/lpgen/lpgen.js
+++ b/tools/lpgen/lpgen.js
@@ -421,7 +421,7 @@ function ParseRCFile(FileTextVar,array) {
// check for some garbage like "List1","Tab1" etc. in *.rc files, we do not need this.
onestring=string[2].replace(/^((List|Tab|Tree|Spin|Custom|Slider|DateTimePicker|Radio|Check|HotKey|Progress)\d)|(whiterect)$/g,"");
// ignore some popup menu craps
- if (string[1]=="POPUP" && onestring.match(/^([a-zA-Z]*menu)|([A-Z][a-z]+[A-Z][a-z]*|dummy)$/g,""))
+ if (string[1]=="POPUP" && onestring.match(/^([a-zA-Z]*menu)|([A-Z][a-z]+[A-Z][a-z]*)$/g))
continue;
//if there is double "", replace with single one
onestring=onestring.replace(/\"{2}/g,"\"");