Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
ed5a0fb0
Commit
ed5a0fb0
authored
Jan 20, 2010
by
ck
Browse files
Maemo: Remove special case for "developer" user.
This user now also resides under /home on the device.
parent
4c375045
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp
View file @
ed5a0fb0
...
...
@@ -49,9 +49,7 @@ QString homeDirOnDevice(const QString &uname)
{
const
QString
&
dir
=
uname
==
QLatin1String
(
"root"
)
?
QLatin1String
(
"/root"
)
:
uname
==
QLatin1String
(
"developer"
)
?
QLatin1String
(
"/var/local/mad-developer-home"
)
:
QLatin1String
(
"/home/"
)
+
uname
;
:
QLatin1String
(
"/home/"
)
+
uname
;
qDebug
(
"%s: user name %s is mapped to home dir %s"
,
Q_FUNC_INFO
,
qPrintable
(
uname
),
qPrintable
(
dir
));
return
dir
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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