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
045e0347
Commit
045e0347
authored
Aug 13, 2010
by
ck
Browse files
Maemo: Show packaging state in summary of details widget.
parent
378ad4de
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationwidget.cpp
View file @
045e0347
...
...
@@ -160,7 +160,11 @@ void MaemoPackageCreationWidget::setPackageManagerIcon()
QString
MaemoPackageCreationWidget
::
summaryText
()
const
{
return
tr
(
"<b>Create Package:</b> "
)
+
QDir
::
toNativeSeparators
(
m_step
->
packageFilePath
());
const
QString
constantString
=
tr
(
"<b>Create Package:</b> "
);
const
QString
dynamicString
=
m_step
->
isPackagingEnabled
()
?
QDir
::
toNativeSeparators
(
m_step
->
packageFilePath
())
:
tr
(
"(Packaging disabled)"
);
return
constantString
+
dynamicString
;
}
QString
MaemoPackageCreationWidget
::
displayName
()
const
...
...
@@ -176,6 +180,7 @@ void MaemoPackageCreationWidget::handleSkipButtonToggled(bool checked)
m_ui
->
debianFilesComboBox
->
setEnabled
(
!
checked
);
m_ui
->
editDebianFileButton
->
setEnabled
(
!
checked
);
m_step
->
setPackagingEnabled
(
!
checked
);
emit
updateSummary
();
}
void
MaemoPackageCreationWidget
::
versionInfoChanged
()
...
...
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