Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/UIFactory.cpp

    rcc04b7 r9fe36b  
    1212// all factories that can be used:
    1313#include "UIElements/TextUIFactory.hpp"
     14#ifdef USE_GUI_QT
     15#include "UIElements/QT4/QTUIFactory.hpp"
     16#endif
    1417
    1518UIFactory *UIFactory::theFactory = 0;
     
    3235      theFactory = new TextUIFactory();
    3336      break;
    34 
     37#ifdef USE_GUI_QT
     38    case QT4 :
     39      theFactory = new QTUIFactory();
     40      break;
     41#endif
    3542    default:
    3643      assert(0 && "No such Factory in stock");
Note: See TracChangeset for help on using the changeset viewer.