From 7a6ecb5e21472074cb099a9bc1d0e4c112386852 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 17 Mar 2023 14:30:23 +0600 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D0=BB=D0=B0=D0=B3=D0=B8=20=D0=B8=D1=81=D0=BF?= =?UTF-8?q?=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/main.cc | 0 source/ublexec.cc | 2 ++ source/ublexec.h | 0 3 files changed, 2 insertions(+) mode change 100755 => 100644 source/main.cc mode change 100755 => 100644 source/ublexec.h 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