diff options
author | Andras Timar <atimar@suse.com> | 2011-09-20 12:24:31 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2011-09-20 16:43:28 +0200 |
commit | 7477f8e7aac723d192c3e325d2477145f13daecc (patch) | |
tree | 815ad70ad1c420704256a938886b8f95205ad690 /l10ntools | |
parent | c751b73637747a37eee023ed67dee341abae38a0 (diff) |
remove unused column from ExeTable
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/localize.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/l10ntools/source/localize.cxx b/l10ntools/source/localize.cxx index 9dde5cb0988d..6c5fc1ec15d7 100644 --- a/l10ntools/source/localize.cxx +++ b/l10ntools/source/localize.cxx @@ -52,15 +52,15 @@ namespace transex3 // SourceTreeLocalizer // -const char *ExeTable[][5] = { - { "src", "transex3", " -e", "negative", "noiso" }, - { "hrc", "transex3", " -e", "positive", "noiso" }, - { "ulf", "ulfex", " -e", "negative", "noiso" }, - { "xcd", "cfgex", " -e", "negative", "iso" }, - { "xcu", "cfgex", " -e", "negative", "iso" }, - { "xrm", "xrmex", " -e", "negative", "iso" }, - { "xhp", "helpex", " -e", "negative", "noiso" }, - { "NULL", "NULL", "NULL", "NULL", "NULL" } +const char *ExeTable[][4] = { + { "src", "transex3", " -e", "negative" }, + { "hrc", "transex3", " -e", "positive" }, + { "ulf", "ulfex", " -e", "negative" }, + { "xcd", "cfgex", " -e", "negative" }, + { "xcu", "cfgex", " -e", "negative" }, + { "xrm", "xrmex", " -e", "negative" }, + { "xhp", "helpex", " -e", "negative" }, + { "NULL", "NULL", "NULL", "NULL" } }; const char *NegativeList[] = { |