This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository libx2goclient. from b91207c libx2goclient skeleton draft new c3b6f7e configure.ac: don't duplicate strings, avoid backticks for command substitution. new 8934f7e configure.ac: drop sed usage, POSIX sh should be good enough. new 10e0cf2 Makefile.am: whitespace-rework. new 0e7ca87 Makefile.am: avoid backticks. new 6a76982 Makefile.am: use $(NULL) where appropriate. new 9a96e3a debian/rules: whitespace normalization. new eb693cd update-po{,t}.sh drop useless use of cat. new 39b2bc4 update-po{,t}.sh: replace cd with pushd/popd. new 6914e14 update-po{,t}.sh: better quoting. new df8b6ad po/POTFILES.in: fix file names. new ffdc949 po/POTFILES.in: fix renamed file. new 0dc9b74 src/Makefile.am: whitespace normalization. new e2af571 src/x2goclient.h: whitespace cleanup. new 4c22c27 src/x2goclient.h: identifiers starting with one or two underscores followed by an uppercase letter are reserved. new 338dcf5 src/x2goclient-object.c: add include guard. new 75e16ac src/x2goclient-session-terminate.h: fix include guard end comment. new 7253bca src/*.h: refactor include guards to use lowercase letters only. new 495dd94 src/*.{c,h}: update file name in top comment. The 18 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: Makefile.am | 13 ++++---- configure.ac | 5 ++-- debian/rules | 8 ++--- po/POTFILES.in | 18 +++++------ src/Makefile.am | 55 +++++++++++++++++----------------- src/x2goclient-agent-start-kdrive.c | 2 +- src/x2goclient-agent-start-kdrive.h | 8 ++--- src/x2goclient-agent-start-nx.c | 2 +- src/x2goclient-agent-start-nx.h | 8 ++--- src/x2goclient-object.c | 7 ++++- src/x2goclient-object.h | 2 +- src/x2goclient-proxy-start-nx.c | 2 +- src/x2goclient-proxy-start-nx.h | 8 ++--- src/x2goclient-renderer-start-kdrive.c | 2 +- src/x2goclient-renderer-start-kdrive.h | 8 ++--- src/x2goclient-session-resume.c | 2 +- src/x2goclient-session-resume.h | 8 ++--- src/x2goclient-session-runcommand.c | 2 +- src/x2goclient-session-runcommand.h | 8 ++--- src/x2goclient-session-suspend.c | 2 +- src/x2goclient-session-suspend.h | 8 ++--- src/x2goclient-session-terminate.c | 2 +- src/x2goclient-session-terminate.h | 8 ++--- src/x2goclient.h | 10 +++---- update-po.sh | 32 ++++++++++---------- update-pot.sh | 15 +++++----- 26 files changed, 127 insertions(+), 118 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 10e0cf2124390affeb9669bc1ef9f02a779dad4f Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:34:57 2019 +0200 Makefile.am: whitespace-rework. --- Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5b52a9c..0cc0608 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,10 +4,10 @@ SUBDIRS = src po ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} -DISTCHECK_CONFIGURE_FLAGS = \ - --disable-silent-rules \ - --enable-introspection \ - $(NULL) +DISTCHECK_CONFIGURE_FLAGS = \ + --disable-silent-rules \ + --enable-introspection \ + $(NULL) MAINTAINERCLEANFILES = \ $(srcdir)/aclocal.m4 \ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 8934f7e0eca95c0169a60e96481997e0f23d1abe Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:32:12 2019 +0200 configure.ac: drop sed usage, POSIX sh should be good enough. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9801f21..248af9b 100644 --- a/configure.ac +++ b/configure.ac @@ -81,7 +81,7 @@ dnl --------------------------------------------------------------------------- P="libx2goclient ${VERSION}" echo " ${P} -$(echo "${P}" | sed 's/./=/g') +${P//?/=} prefix: ${prefix} exec_prefix: ${exec_prefix} -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 0e7ca874ec7fb2e155131eb240d587b3c1266e8e Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:35:22 2019 +0200 Makefile.am: avoid backticks. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 0cc0608..6225f11 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,7 @@ MAINTAINERCLEANFILES = \ $(srcdir)/ltmain.sh \ $(srcdir)/missing \ $(srcdir)/mkinstalldirs \ - `find "$(srcdir)" -type f -name Makefile.in -print` \ + $$(find "$(srcdir)" -type f -name Makefile.in -print) \ $(srcdir)/configure \ $(srcdir)/gtk-doc.make \ $(srcdir)/m4/gtk-doc.m4 \ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 6a76982fdbccba279d2333ac6ed4f09109cadf55 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:35:37 2019 +0200 Makefile.am: use $(NULL) where appropriate. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 6225f11..297c85d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,4 +23,5 @@ MAINTAINERCLEANFILES = \ $(srcdir)/configure \ $(srcdir)/gtk-doc.make \ $(srcdir)/m4/gtk-doc.m4 \ - $(srcdir)/m4/intltool.m4 + $(srcdir)/m4/intltool.m4 \ + $(NULL) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit eb693cdb0791d3665682cbd840b63d18f2e7fda9 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:45:00 2019 +0200 update-po{,t}.sh drop useless use of cat. --- update-po.sh | 8 ++++---- update-pot.sh | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/update-po.sh b/update-po.sh index f432308..38e5037 100755 --- a/update-po.sh +++ b/update-po.sh @@ -1,6 +1,7 @@ #!/bin/bash # Copyright (C) 2017 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2019 by Mihai Moldovan <ionic@ionic.de> # # This package is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,12 +15,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/> -GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') +GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac' | sed -e 's/GETTEXT_PACKAGE=//')" cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ cd po/ -cat LINGUAS | while read lingua; do +while read lingua; do if [ ! -e ${lingua}.po ]; then msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po else @@ -31,8 +32,7 @@ cat LINGUAS | while read lingua; do -e 's/\.xml\.h:/.xml:/g' \ -e 's/\.ini\.h:/.ini:/g' \ -i ${lingua}.po - -done +done < 'LINGUAS' cd - 1>/dev/null mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot diff --git a/update-pot.sh b/update-pot.sh index a159435..da96c4f 100755 --- a/update-pot.sh +++ b/update-pot.sh @@ -3,6 +3,7 @@ set -x # Copyright (C) 2017 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2019 by Mihai Moldovan <ionic@ionic.de> # # This package is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +17,7 @@ set -x # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/> -GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') +GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac'| sed -e 's/GETTEXT_PACKAGE=//')" cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && cd - 1>/dev/null -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 39b2bc4179652133373b8be29a61f43099aac836 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:49:06 2019 +0200 update-po{,t}.sh: replace cd with pushd/popd. --- update-po.sh | 4 ++-- update-pot.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/update-po.sh b/update-po.sh index 38e5037..7137f5a 100755 --- a/update-po.sh +++ b/update-po.sh @@ -19,7 +19,7 @@ GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac' | sed -e 's/GETTEXT cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ -cd po/ +pushd 'po/' 1>'/dev/null' while read lingua; do if [ ! -e ${lingua}.po ]; then msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po @@ -33,6 +33,6 @@ while read lingua; do -e 's/\.ini\.h:/.ini:/g' \ -i ${lingua}.po done < 'LINGUAS' -cd - 1>/dev/null +popd 1>'/dev/null' mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot diff --git a/update-pot.sh b/update-pot.sh index da96c4f..4ff6a14 100755 --- a/update-pot.sh +++ b/update-pot.sh @@ -19,7 +19,7 @@ set -x GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac'| sed -e 's/GETTEXT_PACKAGE=//')" -cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && cd - 1>/dev/null +pushd 'po/' 1>'/dev/null' && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && popd 1>'/dev/null' sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ -e 's/\.ini\.in\.h:/.ini.in:/g' \ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 6914e14ac55612bf6b52e39d01417eaa762f5bea Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:55:59 2019 +0200 update-po{,t}.sh: better quoting. --- update-po.sh | 20 ++++++++++---------- update-pot.sh | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/update-po.sh b/update-po.sh index 7137f5a..547eb86 100755 --- a/update-po.sh +++ b/update-po.sh @@ -17,22 +17,22 @@ GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac' | sed -e 's/GETTEXT_PACKAGE=//')" -cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ +cp "po/${GETTEXT_DOMAIN}.pot" "po/${GETTEXT_DOMAIN}.pot~" pushd 'po/' 1>'/dev/null' while read lingua; do - if [ ! -e ${lingua}.po ]; then - msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po + if [ ! -e "${lingua}.po" ]; then + msginit --input="${GETTEXT_DOMAIN}.pot" --locale="${lingua}" --no-translator --output-file="${lingua}.po" else - intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) + intltool-update --gettext-package "${GETTEXT_DOMAIN}" "$(basename "${lingua}")" fi - sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ - -e 's/\.ini\.in\.h:/.ini.in:/g' \ - -e 's/\.xml\.h:/.xml:/g' \ - -e 's/\.ini\.h:/.ini:/g' \ - -i ${lingua}.po + sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ + -e 's/\.ini\.in\.h:/.ini.in:/g' \ + -e 's/\.xml\.h:/.xml:/g' \ + -e 's/\.ini\.h:/.ini:/g' \ + -i "${lingua}.po" done < 'LINGUAS' popd 1>'/dev/null' -mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot +mv "po/${GETTEXT_DOMAIN}.pot~" "po/${GETTEXT_DOMAIN}.pot" diff --git a/update-pot.sh b/update-pot.sh index 4ff6a14..acc3865 100755 --- a/update-pot.sh +++ b/update-pot.sh @@ -19,10 +19,10 @@ set -x GETTEXT_DOMAIN="$(grep -E '^GETTEXT_PACKAGE=' 'configure.ac'| sed -e 's/GETTEXT_PACKAGE=//')" -pushd 'po/' 1>'/dev/null' && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && popd 1>'/dev/null' +pushd 'po/' 1>'/dev/null' && intltool-update --gettext-package "${GETTEXT_DOMAIN}" --pot && popd 1>'/dev/null' -sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ - -e 's/\.ini\.in\.h:/.ini.in:/g' \ - -e 's/\.xml\.h:/.xml:/g' \ - -e 's/\.ini\.h:/.ini:/g' \ - -i po/${GETTEXT_DOMAIN}.pot +sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ + -e 's/\.ini\.in\.h:/.ini.in:/g' \ + -e 's/\.xml\.h:/.xml:/g' \ + -e 's/\.ini\.h:/.ini:/g' \ + -i "po/${GETTEXT_DOMAIN}.pot" -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 9a96e3affbed81fd399726ad488c52dcf860ac3c Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:38:17 2019 +0200 debian/rules: whitespace normalization. --- debian/rules | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/rules b/debian/rules index da8400d..ebf7e9e 100755 --- a/debian/rules +++ b/debian/rules @@ -10,7 +10,7 @@ include /usr/share/dpkg/buildflags.mk dh $@ --with autoreconf override_dh_auto_configure: - dh_auto_configure $(DHFLAGS) -- \ - --disable-silent-rules \ - --enable-introspection \ - $(NULL) + dh_auto_configure $(DHFLAGS) -- \ + --disable-silent-rules \ + --enable-introspection \ + $(NULL) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit c3b6f7e3874805a2327cf02e450b2489d2245691 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 16:22:07 2019 +0200 configure.ac: don't duplicate strings, avoid backticks for command substitution. --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3fd2185..9801f21 100644 --- a/configure.ac +++ b/configure.ac @@ -78,9 +78,10 @@ dnl --------------------------------------------------------------------------- dnl - Show summary dnl --------------------------------------------------------------------------- +P="libx2goclient ${VERSION}" echo " -libx2goclient $VERSION -`echo libx2goclient $VERSION | sed "s/./=/g"` +${P} +$(echo "${P}" | sed 's/./=/g') prefix: ${prefix} exec_prefix: ${exec_prefix} -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit ffdc949d8b003034f17030e203a35bf67954820c Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:05:52 2019 +0200 po/POTFILES.in: fix renamed file. --- po/POTFILES.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index a88574a..3642fde 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,8 +1,8 @@ src/x2goclient-agent-start-kdrive.c src/x2goclient-agent-start-nx.c src/x2goclient-proxy-start-nx.c +src/x2goclient-object.c src/x2goclient-renderer-start-kdrive.c -src/x2goclient-session-object.c src/x2goclient-session-resume.c src/x2goclient-session-runcommand.c src/x2goclient-session-suspend.c -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit e2af571f8abd2e36b8ff28b5d467da2a35bd7e69 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:20:49 2019 +0200 src/x2goclient.h: whitespace cleanup. --- src/x2goclient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x2goclient.h b/src/x2goclient.h index 2bed159..cdaba10 100644 --- a/src/x2goclient.h +++ b/src/x2goclient.h @@ -32,11 +32,11 @@ G_BEGIN_DECLS // #define X2GOCLIENT_GET_VERSION_S "get_version" // typedef gchar * (*get_version_t) (void); // gchar * get_version (void); -// +// // #define X2GOCLIENT_VERSION "0.0.1" // #define X2GOCLIENT_SET_VERSION gchar * get_version(void) { return X2GOCLIENT_VERSION; } // #define X2GOCLIENT_VERSION_CHECK(x) (!g_strcmp0(x, X2GOCLIENT_VERSION)) -// +// // #define X2GOCLIENT_GET_TYPE_S "get_type" // typedef GType (*get_type_t) (void); // #define X2GOCLIENT_SET_TYPE(x) GType get_type (void) { return x; } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 4c22c278f5ed3a999cdc20932bac9497e44711b9 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:20:30 2019 +0200 src/x2goclient.h: identifiers starting with one or two underscores followed by an uppercase letter are reserved. --- src/x2goclient.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/x2goclient.h b/src/x2goclient.h index cdaba10..7ea119b 100644 --- a/src/x2goclient.h +++ b/src/x2goclient.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef __LIBX2GOCLIENT_H_SEEN__ -#define __LIBX2GOCLIENT_H_SEEN__ 1 +#ifndef x2goclient_h +#define x2goclient_h #include <glib.h> @@ -43,4 +43,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* __LIBX2GOCLIENT_H_SEEN__ */ +#endif /* x2goclient_h */ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 338dcf5ea80f0052a970ea17add2c22246f5845a Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:23:55 2019 +0200 src/x2goclient-object.c: add include guard. --- src/x2goclient-object.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/x2goclient-object.c b/src/x2goclient-object.c index 5e203b4..71f5c58 100644 --- a/src/x2goclient-object.c +++ b/src/x2goclient-object.c @@ -22,6 +22,9 @@ Boston, MA 02110-1301, USA. */ +#ifndef x2goclient_object_h +#define x2goclient_object_h + #include <glib.h> #include <glib/gi18n.h> @@ -31,3 +34,5 @@ #include "x2goclient.h" #include "x2goclient-object.h" + +#endif /* x2goclient_object_h */ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 75e16ac330fc659575006af4dd666f7bd5d54391 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:27:10 2019 +0200 src/x2goclient-session-terminate.h: fix include guard end comment. --- src/x2goclient-session-terminate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x2goclient-session-terminate.h b/src/x2goclient-session-terminate.h index 34ce177..21ae0fe 100644 --- a/src/x2goclient-session-terminate.h +++ b/src/x2goclient-session-terminate.h @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_SESSION_RESUME_H */ +#endif /* X2GOCLIENT_SESSION_TERMINATE_H */ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 7253bca6ac212fecd1260c18bc61bc6c1018c5b8 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:28:08 2019 +0200 src/*.h: refactor include guards to use lowercase letters only. --- src/x2goclient-agent-start-kdrive.h | 6 +++--- src/x2goclient-agent-start-nx.h | 6 +++--- src/x2goclient-proxy-start-nx.h | 6 +++--- src/x2goclient-renderer-start-kdrive.h | 6 +++--- src/x2goclient-session-resume.h | 6 +++--- src/x2goclient-session-runcommand.h | 6 +++--- src/x2goclient-session-suspend.h | 6 +++--- src/x2goclient-session-terminate.h | 6 +++--- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/x2goclient-agent-start-kdrive.h b/src/x2goclient-agent-start-kdrive.h index c49f2b7..bdd5df5 100644 --- a/src/x2goclient-agent-start-kdrive.h +++ b/src/x2goclient-agent-start-kdrive.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_AGENT_START_KDRIVE_H -#define X2GOCLIENT_AGENT_START_KDRIVE_H +#ifndef x2goclient_agent_start_kdrive_h +#define x2goclient_agent_start_kdrive_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_AGENT_START_KDRIVE_H */ +#endif /* x2goclient_agent_start_kdrive_h */ diff --git a/src/x2goclient-agent-start-nx.h b/src/x2goclient-agent-start-nx.h index 0aee729..8b4992f 100644 --- a/src/x2goclient-agent-start-nx.h +++ b/src/x2goclient-agent-start-nx.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_AGENT_START_NX_H -#define X2GOCLIENT_AGENT_START_NX_H +#ifndef x2goclient_agent_start_nx_h +#define x2goclient_agent_start_nx_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_AGENT_START_NX_H */ +#endif /* x2goclient_agent_start_nx_h */ diff --git a/src/x2goclient-proxy-start-nx.h b/src/x2goclient-proxy-start-nx.h index d422b49..cb6acab 100644 --- a/src/x2goclient-proxy-start-nx.h +++ b/src/x2goclient-proxy-start-nx.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_PROXY_START_NX_H -#define X2GOCLIENT_PROXY_START_NX_H +#ifndef x2goclient_proxy_start_nx_h +#define x2goclient_proxy_start_nx_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_PROXY_START_NX_H */ +#endif /* x2goclient_proxy_start_nx_h */ diff --git a/src/x2goclient-renderer-start-kdrive.h b/src/x2goclient-renderer-start-kdrive.h index 637bcf1..9ff7aaf 100644 --- a/src/x2goclient-renderer-start-kdrive.h +++ b/src/x2goclient-renderer-start-kdrive.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_RENDERER_START_KDRIVE_H -#define X2GOCLIENT_RENDERER_START_KDRIVE_H +#ifndef x2goclient_renderer_start_kdrive_h +#define x2goclient_renderer_start_kdrive_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_RENDERER_START_KDRIVE_H */ +#endif /* x2goclient_renderer_start_kdrive_h */ diff --git a/src/x2goclient-session-resume.h b/src/x2goclient-session-resume.h index ce19335..ba741d2 100644 --- a/src/x2goclient-session-resume.h +++ b/src/x2goclient-session-resume.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_SESSION_RESUME_H -#define X2GOCLIENT_SESSION_RESUME_H +#ifndef x2goclient_session_resume_h +#define x2goclient_session_resume_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_SESSION_RESUME_H */ +#endif /* x2goclient_session_resume_h */ diff --git a/src/x2goclient-session-runcommand.h b/src/x2goclient-session-runcommand.h index 9932036..6316752 100644 --- a/src/x2goclient-session-runcommand.h +++ b/src/x2goclient-session-runcommand.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_SESSION_RUNCOMMAND_H -#define X2GOCLIENT_SESSION_RUNCOMMAND_H +#ifndef x2goclient_session_runcommand_h +#define x2goclient_session_runcommand_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_SESSION_RUNCOMMAND_H */ +#endif /* x2goclient_session_runcommand_h */ diff --git a/src/x2goclient-session-suspend.h b/src/x2goclient-session-suspend.h index b0afefa..839885e 100644 --- a/src/x2goclient-session-suspend.h +++ b/src/x2goclient-session-suspend.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_SESSION_SUSPEND_H -#define X2GOCLIENT_SESSION_SUSPEND_H +#ifndef x2goclient_session_suspend_h +#define x2goclient_session_suspend_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_SESSION_SUSPEND_H */ +#endif /* x2goclient_session_suspend_h */ diff --git a/src/x2goclient-session-terminate.h b/src/x2goclient-session-terminate.h index 21ae0fe..f7be95c 100644 --- a/src/x2goclient-session-terminate.h +++ b/src/x2goclient-session-terminate.h @@ -22,8 +22,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef X2GOCLIENT_SESSION_TERMINATE_H -#define X2GOCLIENT_SESSION_TERMINATE_H +#ifndef x2goclient_session_terminate_h +#define x2goclient_session_terminate_h #include <glib.h> @@ -31,4 +31,4 @@ G_BEGIN_DECLS G_END_DECLS -#endif /* X2GOCLIENT_SESSION_TERMINATE_H */ +#endif /* x2goclient_session_terminate_h */ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 0dc9b74bc40971e2956dec005a0e0c2ab3ccd400 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:11:39 2019 +0200 src/Makefile.am: whitespace normalization. --- src/Makefile.am | 55 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index fa2b406..d3d4dac 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -8,37 +8,37 @@ EXTRA_DIST = BUILT_SOURCES = libx2goclientincludedir = $(includedir)/x2goclient -libx2goclientinclude_HEADERS = \ - x2goclient-agent-start-kdrive.h \ - x2goclient-agent-start-nx.h \ - x2goclient.h \ - x2goclient-proxy-start-nx.h \ - x2goclient-renderer-start-kdrive.h \ - x2goclient-object.h \ - x2goclient-session-resume.h \ - x2goclient-session-runcommand.h \ - x2goclient-session-suspend.h \ - x2goclient-session-terminate.h \ +libx2goclientinclude_HEADERS = \ + x2goclient-agent-start-kdrive.h \ + x2goclient-agent-start-nx.h \ + x2goclient.h \ + x2goclient-proxy-start-nx.h \ + x2goclient-renderer-start-kdrive.h \ + x2goclient-object.h \ + x2goclient-session-resume.h \ + x2goclient-session-runcommand.h \ + x2goclient-session-suspend.h \ + x2goclient-session-terminate.h \ $(NULL) -libx2goclient_la_SOURCES = \ - x2goclient-agent-start-kdrive.c \ - x2goclient-agent-start-nx.c \ - x2goclient-proxy-start-nx.c \ - x2goclient-renderer-start-kdrive.c \ - x2goclient-object.c \ - x2goclient-session-resume.c \ - x2goclient-session-runcommand.c \ - x2goclient-session-suspend.c \ - x2goclient-session-terminate.c \ +libx2goclient_la_SOURCES = \ + x2goclient-agent-start-kdrive.c \ + x2goclient-agent-start-nx.c \ + x2goclient-proxy-start-nx.c \ + x2goclient-renderer-start-kdrive.c \ + x2goclient-object.c \ + x2goclient-session-resume.c \ + x2goclient-session-runcommand.c \ + x2goclient-session-suspend.c \ + x2goclient-session-terminate.c \ $(NULL) -libx2goclient_la_CFLAGS = \ - $(LIBX2GOCLIENT_CFLAGS) \ +libx2goclient_la_CFLAGS = \ + $(LIBX2GOCLIENT_CFLAGS) \ $(NULL) -libx2goclient_la_LIBADD = \ - $(LIBX2GOCLIENT_LIBS) \ +libx2goclient_la_LIBADD = \ + $(LIBX2GOCLIENT_LIBS) \ $(NULL) pkgconfig_DATA = x2goclient.pc @@ -50,8 +50,9 @@ INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --warn-all INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) if HAVE_INTROSPECTION -introspection_sources = $(libx2goclientinclude_HEADERS) \ - $(libx2goclient_la_SOURCES) \ +introspection_sources = \ + $(libx2goclientinclude_HEADERS) \ + $(libx2goclient_la_SOURCES) \ $(NULL) x2goclient-1.0.gir: libx2goclient.la -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit df8b6adf32767f507e02a1f32b63383770617f95 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:03:26 2019 +0200 po/POTFILES.in: fix file names. --- po/POTFILES.in | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index 0dbed6b..a88574a 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,9 +1,9 @@ -src/x2goclient_agent_start_kdrive.c -src/x2goclient_agent_start_nx.c -src/x2goclient_proxy_start_nx.c -src/x2goclient_renderer_start_kdrive.c -src/x2goclient_session_object.c -src/x2goclient_session_resume.c -src/x2goclient_session_runcommand.c -src/x2goclient_session_suspend.c -src/x2goclient_session_terminate.c +src/x2goclient-agent-start-kdrive.c +src/x2goclient-agent-start-nx.c +src/x2goclient-proxy-start-nx.c +src/x2goclient-renderer-start-kdrive.c +src/x2goclient-session-object.c +src/x2goclient-session-resume.c +src/x2goclient-session-runcommand.c +src/x2goclient-session-suspend.c +src/x2goclient-session-terminate.c -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 495dd94d000a5976cc7aca0ccd9ec31114291188 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Jul 12 17:33:24 2019 +0200 src/*.{c,h}: update file name in top comment. --- src/x2goclient-agent-start-kdrive.c | 2 +- src/x2goclient-agent-start-kdrive.h | 2 +- src/x2goclient-agent-start-nx.c | 2 +- src/x2goclient-agent-start-nx.h | 2 +- src/x2goclient-object.c | 2 +- src/x2goclient-object.h | 2 +- src/x2goclient-proxy-start-nx.c | 2 +- src/x2goclient-proxy-start-nx.h | 2 +- src/x2goclient-renderer-start-kdrive.c | 2 +- src/x2goclient-renderer-start-kdrive.h | 2 +- src/x2goclient-session-resume.c | 2 +- src/x2goclient-session-resume.h | 2 +- src/x2goclient-session-runcommand.c | 2 +- src/x2goclient-session-runcommand.h | 2 +- src/x2goclient-session-suspend.c | 2 +- src/x2goclient-session-suspend.h | 2 +- src/x2goclient-session-terminate.c | 2 +- src/x2goclient-session-terminate.h | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/x2goclient-agent-start-kdrive.c b/src/x2goclient-agent-start-kdrive.c index 2bc9926..96d34b4 100644 --- a/src/x2goclient-agent-start-kdrive.c +++ b/src/x2goclient-agent-start-kdrive.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_agent_start_kdrive.c - Start server-side X2Go Session (kdrive Xserver agent backend) +/* x2goclient-agent-start-kdrive.c - Start server-side X2Go Session (kdrive Xserver agent backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-agent-start-kdrive.h b/src/x2goclient-agent-start-kdrive.h index bdd5df5..f1c6442 100644 --- a/src/x2goclient-agent-start-kdrive.h +++ b/src/x2goclient-agent-start-kdrive.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_agent_start_kdrive.c - Start server-side X2Go Session (kdrive Xserver agent backend) +/* x2goclient-agent-start-kdrive.h - Start server-side X2Go Session (kdrive Xserver agent backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-agent-start-nx.c b/src/x2goclient-agent-start-nx.c index 723e863..9b37ae2 100644 --- a/src/x2goclient-agent-start-nx.c +++ b/src/x2goclient-agent-start-nx.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_agent_start_nx.c - Start server-side X2Go Session (NX Xserver agent backend aka x2goagent) +/* x2goclient-agent-start-nx.c - Start server-side X2Go Session (NX Xserver agent backend aka x2goagent) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-agent-start-nx.h b/src/x2goclient-agent-start-nx.h index 8b4992f..1f7b33f 100644 --- a/src/x2goclient-agent-start-nx.h +++ b/src/x2goclient-agent-start-nx.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_agent_start_nx.c - Start server-side X2Go Session (NX Xserver agent backend aka x2goagent) +/* x2goclient-agent-start-nx.h - Start server-side X2Go Session (NX Xserver agent backend aka x2goagent) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-object.c b/src/x2goclient-object.c index 71f5c58..4c5f8da 100644 --- a/src/x2goclient-object.c +++ b/src/x2goclient-object.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_object.c - X2Go Client session object definition / initialization +/* x2goclient-object.c - X2Go Client session object definition / initialization Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-object.h b/src/x2goclient-object.h index 00e2121..46e751e 100644 --- a/src/x2goclient-object.h +++ b/src/x2goclient-object.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_object.h - X2Go Client session object definition / initialization +/* x2goclient-object.h - X2Go Client session object definition / initialization Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-proxy-start-nx.c b/src/x2goclient-proxy-start-nx.c index 2ebc43c..0ede788 100644 --- a/src/x2goclient-proxy-start-nx.c +++ b/src/x2goclient-proxy-start-nx.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_proxy_start_nx.c - Start client-side X2Go Session (NX proxy backend) +/* x2goclient-proxy-start-nx.c - Start client-side X2Go Session (NX proxy backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-proxy-start-nx.h b/src/x2goclient-proxy-start-nx.h index cb6acab..08d05d0 100644 --- a/src/x2goclient-proxy-start-nx.h +++ b/src/x2goclient-proxy-start-nx.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_proxy_start_nx.c - Start server-side X2Go Session (NX proxy backend) +/* x2goclient-proxy-start-nx.h - Start server-side X2Go Session (NX proxy backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-renderer-start-kdrive.c b/src/x2goclient-renderer-start-kdrive.c index ef87c1c..0eedcab 100644 --- a/src/x2goclient-renderer-start-kdrive.c +++ b/src/x2goclient-renderer-start-kdrive.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_renderer_start_kdrive.c - Start client-side X2Go Session (kdrive Xserver rendering backend) +/* x2goclient-renderer-start-kdrive.c - Start client-side X2Go Session (kdrive Xserver rendering backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-renderer-start-kdrive.h b/src/x2goclient-renderer-start-kdrive.h index 9ff7aaf..34db297 100644 --- a/src/x2goclient-renderer-start-kdrive.h +++ b/src/x2goclient-renderer-start-kdrive.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_renderer_start_kdrive.c - Start client-side X2Go Session (kdrive Xserver rendering backend) +/* x2goclient-renderer-start-kdrive.h - Start client-side X2Go Session (kdrive Xserver rendering backend) Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-resume.c b/src/x2goclient-session-resume.c index e06bcf9..7994a28 100644 --- a/src/x2goclient-session-resume.c +++ b/src/x2goclient-session-resume.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_resume.c - Resume a suspended X2Go Session +/* x2goclient-session-resume.c - Resume a suspended X2Go Session Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-resume.h b/src/x2goclient-session-resume.h index ba741d2..658acea 100644 --- a/src/x2goclient-session-resume.h +++ b/src/x2goclient-session-resume.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_resume.h - Resume a suspended X2Go Session +/* x2goclient-session-resume.h - Resume a suspended X2Go Session Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-runcommand.c b/src/x2goclient-session-runcommand.c index 7d3a355..2b233c3 100644 --- a/src/x2goclient-session-runcommand.c +++ b/src/x2goclient-session-runcommand.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_runcommand.c - Launch server-side X(2Go)session or single command +/* x2goclient-session-runcommand.c - Launch server-side X(2Go)session or single command Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-runcommand.h b/src/x2goclient-session-runcommand.h index 6316752..4e04e39 100644 --- a/src/x2goclient-session-runcommand.h +++ b/src/x2goclient-session-runcommand.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_runcommand.h - Launch server-side X(2Go)session or single command +/* x2goclient-session-runcommand.h - Launch server-side X(2Go)session or single command Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-suspend.c b/src/x2goclient-session-suspend.c index 2e1460a..86cc5d2 100644 --- a/src/x2goclient-session-suspend.c +++ b/src/x2goclient-session-suspend.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_suspend.c - Suspend a running X2Go Sessions +/* x2goclient-session-suspend.c - Suspend a running X2Go Sessions Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-suspend.h b/src/x2goclient-session-suspend.h index 839885e..a66b5c2 100644 --- a/src/x2goclient-session-suspend.h +++ b/src/x2goclient-session-suspend.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_suspend.h - Suspend a running X2Go Session +/* x2goclient-session-suspend.h - Suspend a running X2Go Session Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-terminate.c b/src/x2goclient-session-terminate.c index b59101a..67c21d0 100644 --- a/src/x2goclient-session-terminate.c +++ b/src/x2goclient-session-terminate.c @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_terminate.c - Terminate a running or suspended X2Go Session +/* x2goclient-session-terminate.c - Terminate a running or suspended X2Go Session Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan diff --git a/src/x2goclient-session-terminate.h b/src/x2goclient-session-terminate.h index f7be95c..a3e7b54 100644 --- a/src/x2goclient-session-terminate.h +++ b/src/x2goclient-session-terminate.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* x2goclient_session_terminate.h - Terminate a running or suspended X2Go Session +/* x2goclient-session-terminate.h - Terminate a running or suspended X2Go Session Copyright (C) 2019 Mike Gabriel Copyright (C) 2019 Mihai Moldovan -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git