Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
KRDC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Network
KRDC
Commits
971476be
Commit
971476be
authored
Oct 14, 2018
by
Yuri Chornoivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor EBN issues and typos
parent
cb515bc1
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
floatingtoolbar.cpp
floatingtoolbar.cpp
+1
-1
rdp/rdpview.cpp
rdp/rdpview.cpp
+2
-2
rdp/rdpview.h
rdp/rdpview.h
+1
-1
tabbedviewwidget.cpp
tabbedviewwidget.cpp
+1
-1
vnc/vncclientthread.cpp
vnc/vncclientthread.cpp
+1
-1
vnc/vncsshtunnelthread.h
vnc/vncsshtunnelthread.h
+2
-2
No files found.
floatingtoolbar.cpp
View file @
971476be
...
...
@@ -41,7 +41,7 @@ static const int autoHideTimeout = 500;
static
const
int
initialAutoHideTimeout
=
2000
;
/**
* Denotes the v
e
rious states of the animation.
* Denotes the v
a
rious states of the animation.
*/
enum
AnimState
{
Hiding
,
...
...
rdp/rdpview.cpp
View file @
971476be
...
...
@@ -359,7 +359,7 @@ bool RdpView::start()
connect
(
m_process
,
SIGNAL
(
error
(
QProcess
::
ProcessError
)),
SLOT
(
processError
(
QProcess
::
ProcessError
)));
connect
(
m_process
,
SIGNAL
(
readyReadStandardError
()),
SLOT
(
receivedStandardError
()));
connect
(
m_process
,
SIGNAL
(
readyReadStandardOutput
()),
SLOT
(
receivedStandardOutput
()));
connect
(
m_process
,
SIGNAL
(
finished
(
int
,
QProcess
::
ExitStatus
)),
SLOT
(
connectionClosed
()));
connect
(
m_process
,
SIGNAL
(
finished
(
int
,
QProcess
::
ExitStatus
)),
SLOT
(
connectionClosed
()));
connect
(
m_process
,
SIGNAL
(
started
()),
SLOT
(
connectionOpened
()));
m_process
->
start
(
QStringLiteral
(
"xfreerdp"
),
arguments
);
...
...
@@ -514,7 +514,7 @@ QString RdpView::keymapToXfreerdp(const QString &keyboadLayout)
}
// list of xfreerdp --kbd-list
// this is a mapping for rdesktop comp
tibil
ty (old settings will still work)
// this is a mapping for rdesktop comp
atibili
ty (old settings will still work)
// needs to be completed (when not in message freeze; needs new localization)
QHash
<
QString
,
QString
>
RdpView
::
initKeymapToXfreerdp
()
{
...
...
rdp/rdpview.h
View file @
971476be
...
...
@@ -80,7 +80,7 @@ private:
void
connectionError
(
const
QString
&
text
,
const
QString
&
caption
);
// called if xfreerdp quits with error
void
connectionClosed
(
CloseType
closeType
);
// Signals the connection closed if not quiting or it is forced
void
connectionClosed
(
CloseType
closeType
);
// Signals the connection closed if not quit
t
ing or it is forced
QString
keymapToXfreerdp
(
const
QString
&
keyboadLayout
);
QHash
<
QString
,
QString
>
initKeymapToXfreerdp
();
...
...
tabbedviewwidget.cpp
View file @
971476be
...
...
@@ -183,7 +183,7 @@ void TabbedViewWidget::setTabText(int index, const QString &label)
m_model
->
emitDataChanged
(
index
);
}
//This functi
nality is taken from KTabWidget for com
atibility.
//This functi
onality is taken from KTabWidget for comp
atibility.
//KTabWidget has been moved to KdeLibs4Support and QTabWidget::tabBarDoubleClicked does not
//work on empty space after tabs,
bool
TabbedViewWidget
::
isEmptyTabbarSpace
(
const
QPoint
&
point
)
const
...
...
vnc/vncclientthread.cpp
View file @
971476be
...
...
@@ -252,7 +252,7 @@ rfbCredential *VncClientThread::credentialHandler(int credentialType)
cred
->
userCredential
.
password
=
strdup
(
password
().
toUtf8
().
constData
());
break
;
default:
qCritical
(
KRDC
)
<<
"credential request failed, unspported credentialType:"
<<
credentialType
;
qCritical
(
KRDC
)
<<
"credential request failed, uns
u
pported credentialType:"
<<
credentialType
;
outputErrorMessage
(
i18n
(
"VNC authentication type is not supported."
));
break
;
}
...
...
vnc/vncsshtunnelthread.h
View file @
971476be
...
...
@@ -23,8 +23,8 @@
**
****************************************************************************/
#ifndef V
C
NCSSHTUNNELTHREAD_H
#define V
C
NCSSHTUNNELTHREAD_H
#ifndef VNCSSHTUNNELTHREAD_H
#define VNCSSHTUNNELTHREAD_H
#include <QThread>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment