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/Dialog.hpp

    reb129c rb787af  
    2828  virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0;
    2929  virtual void queryVector(const char*,Vector *,const double *const,bool)=0;
    30   virtual void queryElement(const char*,element **)=0;
     30  virtual void queryElement(const char*,const element **)=0;
    3131
    3232  virtual bool display();
     
    123123  class ElementQuery : public Query {
    124124  public:
    125     ElementQuery(std::string title, element**_target);
     125    ElementQuery(std::string title, const element**_target);
    126126    virtual ~ElementQuery();
    127127    virtual bool handle()=0;
    128128    virtual void setResult();
    129129  protected:
    130     element *tmp;
     130    const element *tmp;
    131131  private:
    132     element **target;
     132    const element **target;
    133133  };
    134134
Note: See TracChangeset for help on using the changeset viewer.