Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
Konsole
Commits
a8c7c1de
Commit
a8c7c1de
authored
Aug 31, 2009
by
Kurt Hindenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix an issue with my 1017187 commit and fix 1 krazy2 issue
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1017606
parent
df86a1b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/ProcessInfo.cpp
src/ProcessInfo.cpp
+1
-1
src/SessionController.cpp
src/SessionController.cpp
+1
-1
No files found.
src/ProcessInfo.cpp
View file @
a8c7c1de
...
...
@@ -613,7 +613,7 @@ private:
QString
fullDeviceName
=
QString
(
"/dev/"
)
+
deviceNumber
.
rightJustified
(
3
,
'0'
);
delete
[]
kInfoProc
;
QByteArray
deviceName
=
fullDeviceName
.
toLatin1
()
.
constData
()
;
QByteArray
deviceName
=
fullDeviceName
.
toLatin1
();
const
char
*
ttyName
=
deviceName
.
data
();
if
(
KDE_stat
(
ttyName
,
&
statInfo
)
!=
0
)
...
...
src/SessionController.cpp
View file @
a8c7c1de
...
...
@@ -1103,7 +1103,7 @@ void SessionController::zmodemUpload()
QStringList
files
=
KFileDialog
::
getOpenFileNames
(
KUrl
(),
QString
(),
_view
,
i18n
(
"Select Files for ZModem Upload"
));
if
(
!
files
.
isEmpty
())
{
_session
->
startZModem
(
zmodem
,
QString
::
null
,
files
);
_session
->
startZModem
(
zmodem
,
QString
()
,
files
);
}
}
...
...
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