diff options
author | Jose <jose@zeroc.com> | 2014-05-02 19:56:38 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-05-02 19:56:38 +0200 |
commit | 1161c5817059464ab511632c0ce5d14593ced1a3 (patch) | |
tree | 51bbcdf2a4ea43c430312157350bb4271bc3f40d /config/makeprops.py | |
parent | Update .gitignore files (diff) | |
download | ice-1161c5817059464ab511632c0ce5d14593ced1a3.tar.bz2 ice-1161c5817059464ab511632c0ce5d14593ced1a3.tar.xz ice-1161c5817059464ab511632c0ce5d14593ced1a3.zip |
ICE-4851 - Use wstrings for input and output data that contain non-ASCII characters?
Diffstat (limited to 'config/makeprops.py')
-rwxr-xr-x | config/makeprops.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/makeprops.py b/config/makeprops.py index fcbb9ef1bd5..74ad44ae15d 100755 --- a/config/makeprops.py +++ b/config/makeprops.py @@ -700,7 +700,8 @@ def main(): contentHandler = MultiHandler(infile, "") contentHandler.addHandlers([CppPropertyHandler(infile, className), JavaPropertyHandler(infile, className), - CSPropertyHandler(infile, className)]) + CSPropertyHandler(infile, className), + JSPropertyHandler(infile, className)]) else: if lang == "cpp": contentHandler = CppPropertyHandler(infile, className) |