This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch bugfix/general in repository x2goclient. discards ffc56f3 onmainwindow.{cpp,h}: make slotTunnelOk parameter optional and use the non-parameter call for the QSingleShotTimer::timeout() signal. adds 5ff18d9 {x2goclient.pro,res/osxbundle/{Info.plist,postbuild.sh}}: adds e232e50 onmainwindow.cpp: consolidate Windows and non-Windows sshd startup error message. adds b447387 onmainwindow.cpp: typo fix (authoized_keys.) adds b5868aa onmainwindow.cpp: stop exporting directories (Printing, File Sharing) on sshd error. adds 7b18f20 onmainwindow.cpp: fix session icon not being displayed as tray icon (missed legacy resource URI wrapper call.) adds cdf4cbe configdialog.cpp: update XQuartz outdated version info message and links. Add MacPorts reference. adds 551078c configdialog.cpp: adds a154a6c x2goutils.{h,cpp}: use QString references. adds f86629a x2goutils.{h,cpp}: add new helper function show_RichText_WarningMsgBox. adds bd06b93 configdialog.cpp: use new helper function show_RichText_WarningMsgBox to show proper errors. adds f5443ca configdialog.cpp: return empty strings as paths to the XQuartz application if no valid one could be found in order to show the proper error message. adds bcf498f configdialog.cpp: rephrase another error message, use the new helper and reformat code. new 4776273 onmainwindow.{cpp,h}: make slotTunnelOk parameter optional and use the non-parameter call for the QSingleShotTimer::timeout() signal. This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (ffc56f3) \ N -- N -- N refs/heads/bugfix/general (4776273) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever. The 1 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: debian/changelog | 28 +++++++ res/osxbundle/Info.plist | 6 +- res/osxbundle/postbuild.sh | 21 +++++ src/configdialog.cpp | 182 ++++++++++++++++++++++++++------------------ src/onmainwindow.cpp | 55 ++++++------- src/x2goutils.cpp | 26 ++++++- src/x2goutils.h | 6 +- x2goclient.pro | 6 +- 8 files changed, 222 insertions(+), 108 deletions(-) create mode 100755 res/osxbundle/postbuild.sh -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch bugfix/general in repository x2goclient. commit 4776273d11afbc397c75ba54dfa30a527a1bb0bb Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Mar 10 16:48:12 2015 +0100 onmainwindow.{cpp,h}: make slotTunnelOk parameter optional and use the non-parameter call for the QSingleShotTimer::timeout() signal. --- debian/changelog | 2 ++ src/onmainwindow.cpp | 2 +- src/onmainwindow.h | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 64e545f..8c327e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -220,6 +220,8 @@ x2goclient (4.0.4.0-0x2go1) UNRELEASED; urgency=low error message. - configdialog.cpp: rephrase another error message, use the new helper and reformat code. + - onmainwindow.{cpp,h}: make slotTunnelOk parameter optional and use the + non-parameter call for the QSingleShotTimer::timeout() signal. -- X2Go Release Manager <git-admin@x2go.org> Thu, 19 Feb 2015 13:25:28 +0100 diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index d14c899..7157cfb 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -5175,7 +5175,7 @@ void ONMainWindow::slotTunnelOk(int) x2goDebug<<"Waiting for win-servers."; - QTimer::singleShot ( 100, this, SLOT ( slotTunnelOk(int) ) ); + QTimer::singleShot ( 100, this, SLOT ( slotTunnelOk() ) ); return; } #endif diff --git a/src/onmainwindow.h b/src/onmainwindow.h index e1b68dc..dcc938c 100644 --- a/src/onmainwindow.h +++ b/src/onmainwindow.h @@ -1050,7 +1050,7 @@ private slots: void slotSndTunnelFailed ( bool result,QString output, int ); void slotCopyKey ( bool result,QString output,int ); - void slotTunnelOk(int ); + void slotTunnelOk(int = 0); void slotFsTunnelOk(int ); void slotProxyError ( QProcess::ProcessError err ); void slotProxyFinished ( int result,QProcess::ExitStatus st ); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git