Changeset b787af for molecuilder/src/UIElements/TextDialog.cpp
- Timestamp:
- Mar 25, 2010, 1:01:35 PM (15 years ago)
- Children:
- cbc639
- Parents:
- eb129c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/TextDialog.cpp
reb129c rb787af 49 49 } 50 50 51 void TextDialog::queryElement(const char* title, element **target){51 void TextDialog::queryElement(const char* title, const element **target){ 52 52 registerQuery(new ElementTextQuery(title,target)); 53 53 } … … 125 125 126 126 127 TextDialog::ElementTextQuery::ElementTextQuery(std::string title, element **target) :127 TextDialog::ElementTextQuery::ElementTextQuery(std::string title, const element **target) : 128 128 Dialog::ElementQuery(title,target) 129 129 {} … … 136 136 Log() << Verbose(0) << getTitle(); 137 137 cin >> Z; 138 tmp = World::get ()->getPeriode()->FindElement(Z);138 tmp = World::getInstance().getPeriode()->FindElement(Z); 139 139 return tmp; 140 140 }
Note:
See TracChangeset
for help on using the changeset viewer.