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