summaryrefslogtreecommitdiffstats
path: root/ue2/imgsynth2/cscriptparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ue2/imgsynth2/cscriptparser.cpp')
-rw-r--r--ue2/imgsynth2/cscriptparser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ue2/imgsynth2/cscriptparser.cpp b/ue2/imgsynth2/cscriptparser.cpp
index 46a7c42..17ff5a4 100644
--- a/ue2/imgsynth2/cscriptparser.cpp
+++ b/ue2/imgsynth2/cscriptparser.cpp
@@ -10,6 +10,7 @@
10#include <boost/algorithm/string.hpp> 10#include <boost/algorithm/string.hpp>
11#include "cscriptparser.h" 11#include "cscriptparser.h"
12#include "cwindowsbitmap.h" 12#include "cwindowsbitmap.h"
13#include "cpixmap.h"
13 14
14using namespace std; 15using namespace std;
15using namespace boost; 16using namespace boost;
@@ -19,6 +20,7 @@ CScriptparser::CScriptparser(const std::string& scriptfile)
19{ 20{
20 /* add our handlers */ 21 /* add our handlers */
21 m_handlers.insert(new CWindowsBitmap); 22 m_handlers.insert(new CWindowsBitmap);
23 m_handlers.insert(new CPixmap);
22} 24}
23 25
24/*----------------------------------------------------------------------------*/ 26/*----------------------------------------------------------------------------*/