diff --git a/source/main.cc b/source/main.cc old mode 100755 new mode 100644 diff --git a/source/ublexec.cc b/source/ublexec.cc index 3e6b6e2..2639d41 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -1,11 +1,13 @@ #include "ublexec.h" using namespace std; + const string path_app = "/usr/bin/"; const string path_glade = "/usr/share/ublexec/ui/ublexec.glade"; const string path_css = "/usr/share/ublexec/css/style.css"; const string app_name = "ublexec"; int socket_ext_id_I = 0; int socket_trd_id_I = 0; + CmdArgParser::CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help) : Glib::OptionGroup{p_name, p_description, p_help} { Glib::OptionEntry socketIDArg; diff --git a/source/ublexec.h b/source/ublexec.h old mode 100755 new mode 100644