Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Dialog.cpp

    r8df74d re4afb4  
    126126}
    127127
    128 template <> void Dialog::query<atom *>(const char *token, std::string description)
     128template <> void Dialog::query<const atom *>(const char *token, std::string description)
    129129{
    130130  queryAtom(token, description);
    131131}
    132132
    133 template <> void Dialog::query< std::vector<atom *> >(const char *token, std::string description)
     133template <> void Dialog::query< std::vector<const atom *> >(const char *token, std::string description)
    134134{
    135135  queryAtoms(token, description);
    136136}
    137137
    138 template <> void Dialog::query<molecule *>(const char *token, std::string description)
     138template <> void Dialog::query<const molecule *>(const char *token, std::string description)
    139139{
    140140  queryMolecule(token, description);
    141141}
    142142
    143 template <> void Dialog::query< std::vector<molecule *> >(const char *token, std::string description)
     143template <> void Dialog::query< std::vector<const molecule *> >(const char *token, std::string description)
    144144{
    145145  queryMolecules(token, description);
Note: See TracChangeset for help on using the changeset viewer.