diff options
Diffstat (limited to 'l10ntools/source/gConv.cxx')
-rw-r--r-- | l10ntools/source/gConv.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/l10ntools/source/gConv.cxx b/l10ntools/source/gConv.cxx index 2dc4f126fccd..0b034b011cc5 100644 --- a/l10ntools/source/gConv.cxx +++ b/l10ntools/source/gConv.cxx @@ -25,6 +25,7 @@ using namespace std; #include "gConvPo.hxx" #include "gConvProp.hxx" #include "gConvSrc.hxx" +#include "gConvUi.hxx" #include "gConvTree.hxx" #include "gConvUlf.hxx" #include "gConvXcs.hxx" @@ -79,6 +80,7 @@ convert_gen& convert_gen::createInstance(l10nMem& cMemory, else if (sExtension == "pot") x = new convert_po(cMemory); else if (sExtension == "tree") x = new convert_tree(cMemory); else if (sExtension == "ulf") x = new convert_ulf(cMemory); + else if (sExtension == "ui") x = new convert_ui(cMemory); else if (sExtension == "xcu") x = new convert_xcu(cMemory); else if (sExtension == "xhp") x = new convert_xhp(cMemory); else if (sExtension == "xrm") x = new convert_xrm(cMemory); |