[pkg-remote-commits] [x2goclient] 03/04: debian/patches: Rebase 1002_fix-ftbfs-on-non-linux.patch. Drop non-required sys/mount.h include.

Mike Gabriel sunweaver at debian.org
Fri Nov 3 08:56:55 UTC 2017


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

sunweaver pushed a commit to branch master
in repository x2goclient.

commit 62705cee09bc8be5f3cec6cfa825fcbb705b4f15
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Fri Nov 3 09:55:15 2017 +0100

    debian/patches: Rebase 1002_fix-ftbfs-on-non-linux.patch. Drop non-required sys/mount.h include.
---
 debian/patches/1002_fix-ftbfs-on-non-linux.patch | 153 ++++++++++++-----------
 1 file changed, 78 insertions(+), 75 deletions(-)

diff --git a/debian/patches/1002_fix-ftbfs-on-non-linux.patch b/debian/patches/1002_fix-ftbfs-on-non-linux.patch
index 6898e47..d7ff7ce 100644
--- a/debian/patches/1002_fix-ftbfs-on-non-linux.patch
+++ b/debian/patches/1002_fix-ftbfs-on-non-linux.patch
@@ -76,7 +76,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      image=shape=0;
  #endif
      x2goInfof(1) << tr("Starting X2Go Client...");
-@@ -217,7 +217,7 @@
+@@ -222,7 +222,7 @@
      addToAppNames ( "OFFICE",tr ( "OpenOffice.org" ) );
      addToAppNames ( "TERMINAL",tr ( "Terminal" ) );
  
@@ -85,16 +85,16 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  #if QT_VERSION < 0x050000
      widgetExtraStyle = new QPlastiqueStyle ();
  #else
-@@ -447,7 +447,7 @@
-     initSelectSessDlg();
-     initStatusDlg();
+@@ -471,7 +471,7 @@
+     connect(interDlg, SIGNAL(closeInterractionDialog()), this, SLOT(slotCloseInteractionDialog()));
+     username->addWidget ( interDlg );
  
 -#if defined(CFGPLUGIN) && defined(Q_OS_LINUX)
 +#if defined(CFGPLUGIN) && (defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD))
  
      x2goDebug<<"Creating embedded container.";
      embedContainer=new QX11EmbedContainer ( fr );
-@@ -479,7 +479,7 @@
+@@ -503,7 +503,7 @@
  
  
  
@@ -103,7 +103,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if (thinMode)
      {
          QTimer *timer = new QTimer(this);
-@@ -556,7 +556,7 @@
+@@ -582,7 +582,7 @@
      {
          if (!isHidden())
              hide();
@@ -112,7 +112,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          XSync(QX11Info::display(),false);
  #endif
      }
-@@ -735,7 +735,7 @@
+@@ -761,7 +761,7 @@
      oldParentPos=QPoint ( 0,0 );
  #endif
      childId=0l;
@@ -121,7 +121,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  
      connect ( embedContainer, SIGNAL ( clientClosed() ), this,
                SLOT ( slotDetachProxyWindow() ) );
-@@ -790,7 +790,7 @@
+@@ -816,7 +816,7 @@
      if ( !managedMode )
      {
  
@@ -130,7 +130,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          QTimer::singleShot ( 500, this,
                               SLOT ( slotActivateWindow() ) );
  #endif
-@@ -1426,7 +1426,7 @@
+@@ -1458,7 +1458,7 @@
                                   QVariant ( isMaximized() ) );
          st.setting()->sync();
          x2goDebug<<"Saved settings.";
@@ -139,7 +139,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          if (image)
              XFreePixmap(QX11Info::display(),image);
          if (shape)
-@@ -2734,7 +2734,7 @@
+@@ -2816,7 +2816,7 @@
          autologin=st->setting()->value (
                        sid+"/autologin",
                        ( QVariant ) false ).toBool();
@@ -148,7 +148,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          if(command =="XDMCP" && st->setting()->value (
                        sid+"/directxdmcp",
                        ( QVariant ) false ).toBool())
-@@ -3240,7 +3240,7 @@
+@@ -3404,7 +3404,7 @@
          if (config.brokerNoAuth && brokerNoauthWithSessionUsername) {
              config.brokerUser = login->text();
          }
@@ -157,7 +157,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          X2goSettings* st=new X2goSettings(config.iniFile, QSettings::IniFormat);
          QString sid=sessionExplorer->getLastSession()->id();
          QString cmd=st->setting()->value ( sid+"/command",
-@@ -3302,7 +3302,7 @@
+@@ -3466,7 +3466,7 @@
      sshConnection->executeCommand ( "x2gogetservers", this, SLOT ( slotGetServers ( bool, QString,int ) ));
  }
  
@@ -165,8 +165,8 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
 +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD)
  void ONMainWindow::startDirectRDP()
  {
-     X2goSettings* st;
-@@ -3538,7 +3538,7 @@
+     if (!(sessionExplorer->getLastSession())) {
+@@ -3707,7 +3707,7 @@
  bool ONMainWindow::startSession ( const QString& sid )
  {
      setEnabled ( false );
@@ -175,7 +175,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      directRDP=false;
  #endif
      QString passwd;
-@@ -3602,7 +3602,7 @@
+@@ -3771,7 +3771,7 @@
                                      ( QVariant ) false ).toBool();
      krbDelegation=st->setting()->value ( sid+"/krbdelegation",
                                           ( QVariant ) false ).toBool();
@@ -184,7 +184,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      directRDP=(st->setting()->value ( sid+"/directrdp",
                                        ( QVariant ) false ).toBool() && cmd == "RDP");
  
-@@ -4860,7 +4860,7 @@
+@@ -5041,7 +5041,7 @@
  void ONMainWindow::slotSuspendSess()
  {
  
@@ -193,7 +193,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if (directRDP)
      {
          nxproxy->terminate();
-@@ -4921,7 +4921,7 @@
+@@ -5108,7 +5108,7 @@
  void ONMainWindow::slotSuspendSessFromSt()
  {
  
@@ -202,7 +202,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if (directRDP)
      {
          nxproxy->terminate();
-@@ -4945,7 +4945,7 @@
+@@ -5132,7 +5132,7 @@
  
  void ONMainWindow::slotTermSessFromSt()
  {
@@ -211,7 +211,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if (directRDP)
      {
  
-@@ -5018,7 +5018,7 @@
+@@ -5205,7 +5205,7 @@
  void ONMainWindow::slotTermSess()
  {
  
@@ -220,7 +220,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if (directRDP)
      {
          nxproxy->terminate();
-@@ -5384,7 +5384,7 @@
+@@ -5586,7 +5586,7 @@
              sshConnection->executeCommand (scmd);
  
              bool sysPulse=false;
@@ -229,7 +229,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
              loadPulseModuleNativeProtocol();
              QFile file ( "/etc/default/pulseaudio" );
              if ( file.open ( QIODevice::ReadOnly |
-@@ -5954,7 +5954,7 @@
+@@ -6156,7 +6156,7 @@
  
  void ONMainWindow::slotProxyError ( QProcess::ProcessError err )
  {
@@ -237,8 +237,8 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
 +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD)
      if(err==QProcess::FailedToStart && directRDP)
      {
-         QString main_text = tr("Failed to start RDP or XMDCP client");
-@@ -6063,7 +6063,7 @@
+         QString main_text = tr("Failed to start RDP or XDMCP client");
+@@ -6265,7 +6265,7 @@
              }
          }
  
@@ -247,7 +247,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          if (directRDP)
              nxproxy=0;
  #endif
-@@ -6077,7 +6077,7 @@
+@@ -6279,7 +6279,7 @@
      nxproxy=0l;
      proxyWinId=0;
  
@@ -255,8 +255,8 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
 +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD)
      if (directRDP)
      {
-         pass->setText ( "" );
-@@ -9359,7 +9359,7 @@
+         if (closeDisconnect)
+@@ -9636,7 +9636,7 @@
      return false;
  }
  
@@ -265,7 +265,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  void ONMainWindow::setWidgetStyle ( QWidget* widget )
  {
      widget->setStyle ( widgetExtraStyle );
-@@ -9750,7 +9750,7 @@
+@@ -10033,7 +10033,7 @@
                                   ( QVariant )
                                   "UTF-8" ).toString();
  #endif
@@ -274,7 +274,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
              QString fromCode=st.setting()->value (
                                   sid+"/iconvfrom",
                                   ( QVariant ) tr (
-@@ -10849,7 +10849,7 @@
+@@ -11138,7 +11138,7 @@
      else
          pixmap=*(sessionExplorer->getLastSession()->sessIcon());
  
@@ -283,7 +283,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  
      XStoreName(QX11Info::display(), proxyWinId, title.toLocal8Bit().data());
  
-@@ -10896,7 +10896,7 @@
+@@ -11185,7 +11185,7 @@
  void ONMainWindow::slotSetProxyWinFullscreen()
  {
  
@@ -292,7 +292,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  
      QRect geom=QApplication::desktop()->screenGeometry(localDisplayNumber-1);
      Atom atom = XInternAtom ( QX11Info::display(), "_NET_WM_STATE_FULLSCREEN", True );
-@@ -10952,7 +10952,7 @@
+@@ -11241,7 +11241,7 @@
          ", h: "+ QString("%1").arg(geom.height());
      x2goDebug<<"Resizing proxy window to fit display: " + QString("%1").arg(disp) + " " + geoStr;
  
@@ -301,7 +301,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      XSync(QX11Info::display(),false);
      XMoveResizeWindow(QX11Info::display(), proxyWinId, geom.x(), geom.y(), 800, 600);
      XMapWindow(QX11Info::display(), proxyWinId);
-@@ -10972,7 +10972,7 @@
+@@ -11261,7 +11261,7 @@
          return QRect();
      return proxyRect;
  #endif
@@ -310,7 +310,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      QRect proxyRect;
      Window root;
      int x,y;
-@@ -11054,7 +11054,7 @@
+@@ -11348,7 +11348,7 @@
          xinSizeInc=1;
      else
          xinSizeInc=-1;
@@ -319,7 +319,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      lastDisplayGeometry.setWidth(lastDisplayGeometry.width()+xinSizeInc);
      XSync(QX11Info::display(),false);
      XResizeWindow(QX11Info::display(), proxyWinId,
-@@ -11185,7 +11185,7 @@
+@@ -11485,7 +11485,7 @@
      setStatStatus();
      act_embedContol->setText ( tr ( "Attach X2Go window" ) );
      act_embedContol->setIcon ( QIcon ( ":/img/icons/32x32/attach.png" ) );
@@ -328,7 +328,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      //if QX11EmbedContainer cannot embed window, check if window exists
      //and reconnect
      if ( !embedControlChanged )
-@@ -11600,7 +11600,7 @@
+@@ -11900,7 +11900,7 @@
  
  void ONMainWindow::slotChangeKbdLayout(const QString& layout)
  {
@@ -337,7 +337,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      QStringList args;
      args<<"-layout"<<layout;
  
-@@ -11677,7 +11677,7 @@
+@@ -11977,7 +11977,7 @@
      pass->setEchoMode ( QLineEdit::Password );
      pass->setFocus();
  
@@ -346,7 +346,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      connect ( login,SIGNAL ( clicked() ),this,
                SLOT ( slotActivateWindow() ) );
      connect ( pass,SIGNAL ( clicked() ),this,
-@@ -12638,7 +12638,7 @@
+@@ -12937,7 +12937,7 @@
      dr.rmdir ( path );
  }
  
@@ -355,7 +355,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  long ONMainWindow::X11FindWindow ( QString text, long rootWin )
  {
      Window    wParent;
-@@ -12679,7 +12679,7 @@
+@@ -12978,7 +12978,7 @@
  long ONMainWindow::findWindow ( QString text )
  {
      x2goDebug<<"Searching window with title: " + text;
@@ -364,7 +364,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      return X11FindWindow ( text );
  #endif
  #ifdef Q_OS_WIN
-@@ -12702,7 +12702,7 @@
+@@ -13013,7 +13013,7 @@
  
  void ONMainWindow::doPluginInit()
  {
@@ -373,7 +373,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      Dl_info info;
      dladdr ( ( void* ) & ( ONMainWindow::getPortable ),&info );
      QString fname=info.dli_fname;
-@@ -12785,7 +12785,7 @@
+@@ -13096,7 +13096,7 @@
  QSize ONMainWindow::getWindowSize ( long winId )
  {
  
@@ -382,7 +382,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      XWindowAttributes atr;
      if ( XGetWindowAttributes ( QX11Info::display(),winId,&atr ) )
          return QSize ( atr.width,atr.height );
-@@ -12833,7 +12833,7 @@
+@@ -13144,7 +13144,7 @@
  {
      childId=wndId;
      embedContainer->show();
@@ -391,7 +391,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  
      x2goDebug<<"Embedding window with ID "<<wndId<<" in container.";
  
-@@ -12856,7 +12856,7 @@
+@@ -13167,7 +13167,7 @@
  {
      if ( !childId )
          return;
@@ -402,7 +402,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
          embedContainer->discardClient();
 --- a/src/onmainwindow.h
 +++ b/src/onmainwindow.h
-@@ -61,7 +61,7 @@
+@@ -65,7 +65,7 @@
  @author Oleksandr Shneyder
  */
  
@@ -411,7 +411,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  class QX11EmbedContainer;
  #endif
  class QToolButton;
-@@ -778,7 +778,7 @@
+@@ -800,7 +800,7 @@
      bool runStartApp;
      bool ldapOnly;
      bool isScDaemonOk;
@@ -420,7 +420,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      bool directRDP;
  #endif
  
-@@ -887,7 +887,7 @@
+@@ -911,7 +911,7 @@
      QRect dispGeometry;
  #endif
  
@@ -429,7 +429,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      long image, shape;
  #endif
  
-@@ -1150,7 +1150,7 @@
+@@ -1181,7 +1181,7 @@
  
  private:
      void resizeProxyWinOnDisplay(int display);
@@ -438,7 +438,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      long X11FindWindow ( QString text, long rootWin=0 );
  #endif
      void addToAppNames ( QString intName, QString transName );
-@@ -1176,7 +1176,7 @@
+@@ -1207,7 +1207,7 @@
      void printSshDError_noAuthorizedKeysFile();
      void loadPulseModuleNativeProtocol();
      void initEmbedToolBar();
@@ -447,7 +447,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      void startDirectRDP();
  #endif
      void filterDesktops ( const QString& filter,
-@@ -1218,7 +1218,7 @@
+@@ -1249,7 +1249,7 @@
      long childId;
      QSize oldParentSize;
  
@@ -458,7 +458,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  #ifdef Q_OS_WIN
 --- a/src/onmainwindow_privat.h
 +++ b/src/onmainwindow_privat.h
-@@ -84,7 +84,7 @@
+@@ -85,10 +85,9 @@
  
  #if !defined Q_OS_WIN
  #include <sys/mount.h>
@@ -466,8 +466,11 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
 +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD)
  #include <X11/Xatom.h>
  #include <X11/xpm.h>
- #include <linux/fs.h>
-@@ -149,7 +149,7 @@
+-#include <linux/fs.h>
+ #endif // Q_OS_LINUX
+ #endif // !defined Q_OS_WIN
+ 
+@@ -150,7 +149,7 @@
  #include <QHostInfo>
  #endif
  
@@ -476,7 +479,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  #if QT_VERSION < 0x050000
  #include <QX11Info>
  #else
-@@ -160,7 +160,7 @@
+@@ -161,7 +160,7 @@
  #endif
  
  #ifdef CFGPLUGIN
@@ -487,7 +490,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  #endif
 --- a/src/pulsemanager.cpp
 +++ b/src/pulsemanager.cpp
-@@ -143,7 +143,7 @@
+@@ -135,7 +135,7 @@
  #elif defined (Q_OS_WIN)
    server_working_dir_ = QString (app_dir_ + "/pulse/");
    server_binary_ = QString (app_dir_ + "/pulse/pulseaudio.exe");
@@ -496,7 +499,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
    std::ssize_t path_len = pathconf (".", _PC_PATH_MAX);
  
    if (-1 == path_len) {
-@@ -212,7 +212,7 @@
+@@ -206,7 +206,7 @@
      start_osx ();
  #elif defined (Q_OS_WIN)
      start_win ();
@@ -527,16 +530,16 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
              directRDP=true;
 --- a/src/sessionwidget.cpp
 +++ b/src/sessionwidget.cpp
-@@ -90,7 +90,7 @@
-     sshPort->setValue ( mainWindow->getDefaultSshPort().toInt() );
-     sshPort->setMinimum ( 1 );
-     sshPort->setMaximum ( 999999999 );
+@@ -95,7 +95,7 @@
+     sshPort->setMinimum ( 0 );
+     sshPort->setMaximum ( 65535 );
+     sshPort->setToolTip (ssh_port_tooltip_text);
 -#ifdef Q_OS_LINUX
 +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD_KERNEL) || defined(Q_OS_HURD)
      rdpPort=new QSpinBox ( sgb );
      rdpPort->setValue ( mainWindow->getDefaultSshPort().toInt() );
-     rdpPort->setMinimum ( 1 );
-@@ -121,7 +121,7 @@
+     rdpPort->setMinimum ( 0 );
+@@ -127,7 +127,7 @@
      elLay->addWidget ( server );
      elLay->addWidget ( uname );
      elLay->addWidget ( sshPort );
@@ -545,7 +548,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      elLay->addWidget ( rdpPort );
  #endif
      suLay->addLayout ( slLay );
-@@ -244,7 +244,7 @@
+@@ -251,7 +251,7 @@
          sessLay->addSpacing ( 15 );
      sessLay->addWidget ( sgb );
      sessLay->addWidget ( deskSess );
@@ -554,7 +557,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      cbDirectRDP=new QCheckBox(tr("Direct RDP connection"), deskSess);
      cmdLay->addWidget(cbDirectRDP,1,0,1,6);
      cbDirectRDP->hide();
-@@ -282,7 +282,7 @@
+@@ -289,7 +289,7 @@
      connect (server, SIGNAL(textChanged(const QString&)),this, SLOT(slot_emitSettings()));
      connect (uname, SIGNAL(textChanged(const QString&)),this, SLOT(slot_emitSettings()));
      connect (cbKrbLogin, SIGNAL(clicked(bool)), this, SLOT(slot_krbChecked()));
@@ -563,7 +566,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      connect (rdpPort, SIGNAL(valueChanged(int)),this, SLOT(slot_emitSettings()));
  #endif
  
-@@ -366,7 +366,7 @@
+@@ -373,7 +373,7 @@
  }
  
  
@@ -572,7 +575,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
  void SessionWidget::slot_rdpDirectClicked()
  {
      bool isDirectRDP=cbDirectRDP->isChecked();
-@@ -478,7 +478,7 @@
+@@ -485,7 +485,7 @@
  {
      leCmdIp->setText ( tr ( "Command:" ) );
      pbAdvanced->hide();
@@ -581,7 +584,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      cbDirectRDP->hide();
  #endif
      leCmdIp->show();
-@@ -506,7 +506,7 @@
+@@ -513,7 +513,7 @@
                  leCmdIp->setText ( tr ( "Server:" ) );
                  pbAdvanced->show();
                  cmd->setText ( rdpServer );
@@ -590,7 +593,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
                  cbDirectRDP->show();
  #endif
              }
-@@ -514,7 +514,7 @@
+@@ -521,7 +521,7 @@
              {
                  leCmdIp->setText ( tr ( "XDMCP server:" ) );
                  cmd->setText ( xdmcpServer );
@@ -599,7 +602,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
                  cbDirectRDP->show();
                  cbDirectRDP->setText(tr ("direct XDMCP connection"));
  #endif
-@@ -526,7 +526,7 @@
+@@ -533,7 +533,7 @@
              cmd->setText ( "" );
          }
      }
@@ -608,7 +611,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      slot_rdpDirectClicked();
  #endif
  }
-@@ -594,7 +594,7 @@
+@@ -601,7 +601,7 @@
              sessionId+"/sshport",
              ( QVariant ) mainWindow->getDefaultSshPort().toInt()
          ).toInt() );
@@ -617,7 +620,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      rdpPort->setValue (
          st.setting()->value (
              sessionId+"/rdpport",3389
-@@ -689,7 +689,7 @@
+@@ -696,7 +696,7 @@
                                      ( QVariant ) "" ).toString().trimmed();
      xdmcpServer=st.setting()->value ( sessionId+"/xdmcpserver",
                                        ( QVariant ) "localhost" ).toString().trimmed();
@@ -626,7 +629,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      if(st.setting()->value (sessionId+"/directrdp",false ).toBool())
      {
          cbDirectRDP->setChecked(true);
-@@ -758,7 +758,7 @@
+@@ -765,7 +765,7 @@
              cmd->setEnabled ( true );
              cmd->setText ( rdpServer );
              pbAdvanced->show();
@@ -635,7 +638,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
              cbDirectRDP->show();
              slot_rdpDirectClicked();
  #endif
-@@ -769,7 +769,7 @@
+@@ -776,7 +776,7 @@
              sessBox->setCurrentIndex ( XDMCP );
              cmd->setEnabled ( true );
              cmd->setText ( xdmcpServer );
@@ -644,7 +647,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
              cbDirectRDP->show();
              slot_rdpDirectClicked();
  #endif
-@@ -786,7 +786,7 @@
+@@ -793,7 +793,7 @@
          sessName->selectAll();
          sessName->setFocus();
      }
@@ -653,7 +656,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      slot_rdpDirectClicked();
  #endif
      slot_krbChecked();
-@@ -811,7 +811,7 @@
+@@ -818,7 +818,7 @@
      icon->setIcon ( QIcon ( sessIcon ) );
      sshPort->setValue (
          mainWindow->getDefaultSshPort().toInt() );
@@ -662,7 +665,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      rdpPort->setValue (3389);
  #endif
  
-@@ -857,7 +857,7 @@
+@@ -864,7 +864,7 @@
  
      st.setting()->setValue ( sessionId+"/key",
                               ( QVariant ) key->text().trimmed() );
@@ -671,7 +674,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      st.setting()->setValue ( sessionId+"/rdpport",
                               ( QVariant ) rdpPort->value() );
  #endif
-@@ -866,7 +866,7 @@
+@@ -873,7 +873,7 @@
      st.setting()->setValue(sessionId+"/autologin",( QVariant ) cbAutoLogin->isChecked());
      st.setting()->setValue(sessionId+"/krblogin",( QVariant ) cbKrbLogin->isChecked());
      st.setting()->setValue(sessionId+"/krbdelegation",( QVariant ) cbKrbDelegation->isChecked());
@@ -680,7 +683,7 @@ Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
      st.setting()->setValue(sessionId+"/directrdp",( QVariant ) cbDirectRDP->isChecked());
      st.setting()->setValue(sessionId+"/directxdmcp",( QVariant ) cbDirectRDP->isChecked());
  #endif
-@@ -960,7 +960,7 @@
+@@ -967,7 +967,7 @@
      return sessName->text();
  }
  

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-remote/x2goclient.git



More information about the pkg-remote-commits mailing list