Ignore:
Timestamp:
Mar 25, 2010, 1:01:35 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
cbc639
Parents:
eb129c
Message:

Repaired code that was broken by merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/UIElements/TextDialog.cpp

    reb129c rb787af  
    4949}
    5050
    51 void TextDialog::queryElement(const char* title, element **target){
     51void TextDialog::queryElement(const char* title, const element **target){
    5252  registerQuery(new ElementTextQuery(title,target));
    5353}
     
    125125
    126126
    127 TextDialog::ElementTextQuery::ElementTextQuery(std::string title, element **target) :
     127TextDialog::ElementTextQuery::ElementTextQuery(std::string title, const element **target) :
    128128    Dialog::ElementQuery(title,target)
    129129{}
     
    136136  Log() << Verbose(0) << getTitle();
    137137  cin >> Z;
    138   tmp = World::get()->getPeriode()->FindElement(Z);
     138  tmp = World::getInstance().getPeriode()->FindElement(Z);
    139139  return tmp;
    140140}
Note: See TracChangeset for help on using the changeset viewer.