Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Dialog.cpp

    r24a5e0 r5605032  
    133133  *target = *tmp;
    134134}
     135
     136// Element Queries
     137Dialog::ElementQuery::ElementQuery(std::string title, const element **_target) :
     138  Query(title),
     139  tmp(0),
     140  target(_target)
     141  {}
     142
     143Dialog::ElementQuery::~ElementQuery(){}
     144
     145void Dialog::ElementQuery::setResult(){
     146  *target=tmp;
     147}
Note: See TracChangeset for help on using the changeset viewer.