[X2Go-Commits] [x2goclient] 01/179: {unixhelper.{cpp, h}, x2goclient.pro{maemo}}: add unixhelper stub.

git-admin at x2go.org git-admin at x2go.org
Mon Jun 20 23:54:49 CEST 2016


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit 84348351c846ed14229487626aa7ac2cd7dec172
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Sat Mar 14 22:21:34 2015 +0100

    {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
---
 debian/changelog     |    1 +
 src/unixhelper.cpp   |   23 +++++++++++++++++++++++
 src/unixhelper.h     |   29 +++++++++++++++++++++++++++++
 x2goclient.pro       |    6 ++++--
 x2goclient.pro.maemo |    6 ++++--
 5 files changed, 61 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a6807b9..0db9912 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -34,6 +34,7 @@ x2goclient (4.0.5.2-0x2go1) UNRELEASED; urgency=medium
       and is cumbersome to use, but there seems to be no other way to do
       that...
     - src/help.h: typo fix in comment only.
+    - {unixhelper.{cpp,h},x2goclient.pro{,.maemo}}: add unixhelper stub.
   * debian/control:
     - Maintainer change in package: X2Go Developers <x2go-dev at lists.x2go.org>.
 
diff --git a/src/unixhelper.cpp b/src/unixhelper.cpp
new file mode 100644
index 0000000..221bdb2
--- /dev/null
+++ b/src/unixhelper.cpp
@@ -0,0 +1,23 @@
+/***************************************************************************
+ *  Copyright (C) 2015 by Mihai Moldovan <ionic at ionic.de> +49 721 14595728 *
+ *                                                                         *
+ *  This program is free software; you can redistribute it and/or modify   *
+ *  it under the terms of the GNU General Public License as published by   *
+ *  the Free Software Foundation; either version 2 of the License, or      *
+ *  (at your option) any later version.                                    *
+ *                                                                         *
+ *  This program is distributed in the hope that it will be useful,        *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
+ *  GNU General Public License for more details.                           *
+ *                                                                         *
+ *  You should have received a copy of the GNU General Public License      *
+ *  along with this program; if not, write to the                          *
+ *  Free Software Foundation, Inc.,                                        *
+ *  59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
+ ***************************************************************************/
+
+#ifdef Q_OS_UNIX
+
+
+#endif /* defined (Q_OS_UNIX) */
diff --git a/src/unixhelper.h b/src/unixhelper.h
new file mode 100644
index 0000000..31d983e
--- /dev/null
+++ b/src/unixhelper.h
@@ -0,0 +1,29 @@
+/***************************************************************************
+ *  Copyright (C) 2015 by Mihai Moldovan <ionic at ionic.de> +49 721 14595728 *
+ *                                                                         *
+ *  This program is free software; you can redistribute it and/or modify   *
+ *  it under the terms of the GNU General Public License as published by   *
+ *  the Free Software Foundation; either version 2 of the License, or      *
+ *  (at your option) any later version.                                    *
+ *                                                                         *
+ *  This program is distributed in the hope that it will be useful,        *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
+ *  GNU General Public License for more details.                           *
+ *                                                                         *
+ *  You should have received a copy of the GNU General Public License      *
+ *  along with this program; if not, write to the                          *
+ *  Free Software Foundation, Inc.,                                        *
+ *  59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
+ ***************************************************************************/
+
+#ifdef Q_OS_UNIX
+
+#ifndef UNIXHELPER_H
+#define UNIXHELPER_H
+
+
+
+#endif /* !defined (UNIXHELPER_H) */
+
+#endif /* defined (Q_OS_UNIX) */
diff --git a/x2goclient.pro b/x2goclient.pro
index febffb9..34da16e 100644
--- a/x2goclient.pro
+++ b/x2goclient.pro
@@ -79,7 +79,8 @@ HEADERS += src/configdialog.h \
            src/folderbutton.h \
            src/folderexplorer.h \
            src/non_modal_messagebox.h \
-           src/help.h
+           src/help.h \
+           src/unixhelper.h
 
 SOURCES += src/sharewidget.cpp \
            src/settingswidget.cpp \
@@ -122,7 +123,8 @@ SOURCES += src/sharewidget.cpp \
            src/folderbutton.cpp \
            src/folderexplorer.cpp \
            src/non_modal_messagebox.cpp \
-           src/help.cpp
+           src/help.cpp \
+           src/unixhelper.cpp
 
 LIBS += -lssh
 win32:LIBS += -lAdvAPI32 -lshell32 -lUser32
diff --git a/x2goclient.pro.maemo b/x2goclient.pro.maemo
index ac2eacf..63cc3d8 100644
--- a/x2goclient.pro.maemo
+++ b/x2goclient.pro.maemo
@@ -35,7 +35,8 @@ HEADERS += src/configdialog.h \
            src/settingswidget.h \
            src/sharewidget.h \
            src/clicklineedit.h \
-           src/help.h
+           src/help.h \
+           src/unixhelper.h
 
 SOURCES += src/sharewidget.cpp \
            src/settingswidget.cpp \
@@ -62,7 +63,8 @@ SOURCES += src/sharewidget.cpp \
            src/embedwidget.cpp \
            src/wapi.cpp \
            src/clicklineedit.cpp \
-           src/help.cpp
+           src/help.cpp \
+           src/unixhelper.cpp
 
 TEMPLATE = app
 TARGET =

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list