Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp

    re4afb4 r8df74d  
    2222#include "CommandLineUI/CommandLineDialog.hpp"
    2323
    24 #include "CommandLineUI/CommandLineParser.hpp"
    2524#include "Helpers/Log.hpp"
    2625#include "Helpers/Verbose.hpp"
     26#include "CommandLineParser.hpp"
    2727
    2828CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(string title, string _description) :
     
    3434bool CommandLineDialog::StringsCommandLineQuery::handle() {
    3535  if (CommandLineParser::getInstance().vm.count(getTitle())) {
    36     tmp = CommandLineParser::getInstance().vm[getTitle()].as< std::vector<std::string> >();
     36    tmp = CommandLineParser::getInstance().vm[getTitle()].as< vector<string> >();
    3737    return true;
    3838  } else {
Note: See TracChangeset for help on using the changeset viewer.