Module: tools Branch: master Commit: ca6dcfc2f28dff6880e6812f163bd499f9680aba URL: http://source.winehq.org/git/tools.git/?a=commit;h=ca6dcfc2f28dff6880e6812f1...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Fri Jul 31 16:30:02 2009 +0200
transl: Fix parsing of Dialog resources.
---
transl/php/lib_res.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/transl/php/lib_res.php b/transl/php/lib_res.php index c19087f..a7af016 100644 --- a/transl/php/lib_res.php +++ b/transl/php/lib_res.php @@ -721,8 +721,8 @@ class DialogResource extends Resource $this->cy = get_word($data);
$pos = 0; - $this->menuName = get_stringorid($data, $pos, 0xff00); - $this->className = get_stringorid($data, $pos, 0xff00); + $this->menuName = get_stringorid($data, $pos); + $this->className = get_stringorid($data, $pos); $this->title = get_stringorid($data, $pos, 0xff00); $data = substr($data, $pos);