Changes in src/UIElements/UIFactory.cpp [cc04b7:9fe36b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/UIFactory.cpp
rcc04b7 r9fe36b 12 12 // all factories that can be used: 13 13 #include "UIElements/TextUIFactory.hpp" 14 #ifdef USE_GUI_QT 15 #include "UIElements/QT4/QTUIFactory.hpp" 16 #endif 14 17 15 18 UIFactory *UIFactory::theFactory = 0; … … 32 35 theFactory = new TextUIFactory(); 33 36 break; 34 37 #ifdef USE_GUI_QT 38 case QT4 : 39 theFactory = new QTUIFactory(); 40 break; 41 #endif 35 42 default: 36 43 assert(0 && "No such Factory in stock");
Note:
See TracChangeset
for help on using the changeset viewer.