Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Dialog.cpp

    r2ededc2 r5a7243  
    129129  *target = *tmp;
    130130}
     131
     132// Element Queries
     133Dialog::ElementQuery::ElementQuery(std::string title, element **_target) :
     134  Query(title),
     135  target(_target),
     136  tmp(0)
     137  {}
     138
     139Dialog::ElementQuery::~ElementQuery(){}
     140
     141void Dialog::ElementQuery::setResult(){
     142  *target=tmp;
     143}
Note: See TracChangeset for help on using the changeset viewer.