Ignore:
Timestamp:
Feb 26, 2010, 12:40:52 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
e65cc0
Parents:
33bc66
Message:

Added -Wall flag and fixed several small hickups

Location:
molecuilder/src/UIElements
Files:
2 edited

Legend:

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

    r33bc66 r98a2987  
    102102Dialog::MoleculeQuery::MoleculeQuery(string title, molecule **_target, MoleculeListClass *_molecules) :
    103103    Query(title),
    104     target(_target),
     104    tmp(0),
    105105    molecules(_molecules),
    106     tmp(0)
     106    target(_target)
     107
    107108{}
    108109
     
    116117
    117118Dialog::VectorQuery::VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check) :
    118   Query(title), target(_target), cellSize(_cellSize), check(_check)
     119  Query(title),
     120  cellSize(_cellSize),
     121  check(_check),
     122  target(_target)
    119123{
    120124tmp = new Vector();
  • molecuilder/src/UIElements/TextDialog.cpp

    r33bc66 r98a2987  
    114114bool TextDialog::VectorTextQuery::handle() {
    115115 tmp->AskPosition(cellSize,check);
     116 return true;
    116117}
Note: See TracChangeset for help on using the changeset viewer.