mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Small and Complete Installations always install the most bleeding edge build. Put a note about this in the confirmation dialog.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18646 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
25c868a8f9
commit
28643263b7
1 changed files with 6 additions and 2 deletions
|
|
@ -348,7 +348,9 @@ void RbUtilQt::completeInstall()
|
|||
{
|
||||
if(chkConfig(true)) return;
|
||||
if(QMessageBox::question(this, tr("Confirm Installation"),
|
||||
tr("Do you really want to make a complete Installation?"),
|
||||
tr("Do you really want to make a complete Installation? "
|
||||
"This will install the latest build available, not the latest "
|
||||
"released version."),
|
||||
QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes) return;
|
||||
|
||||
// create logger
|
||||
|
|
@ -400,7 +402,9 @@ void RbUtilQt::smallInstall()
|
|||
{
|
||||
if(chkConfig(true)) return;
|
||||
if(QMessageBox::question(this, tr("Confirm Installation"),
|
||||
tr("Do you really want to make a small Installation?"),
|
||||
tr("Do you really want to make a small Installation? "
|
||||
"This will install the latest build available, not the latest "
|
||||
"released version."),
|
||||
QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes) return;
|
||||
|
||||
// create logger
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue