Skip to content

Commit

Permalink
Merge pull request #35 from libyui/improve_cancel_message
Browse files Browse the repository at this point in the history
Improve cancel message
  • Loading branch information
jreidinger committed Oct 10, 2016
2 parents 789441e + ba7835d commit 84d6316
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION.cmake
@@ -1,6 +1,6 @@
SET( VERSION_MAJOR "2" )
SET( VERSION_MINOR "45" )
SET( VERSION_PATCH "6" )
SET( VERSION_PATCH "7" )
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" )

##### This is need for the libyui core, ONLY.
Expand Down
2 changes: 1 addition & 1 deletion package/libyui-qt-pkg-doc.spec
Expand Up @@ -20,7 +20,7 @@
%define so_version 7

Name: %{parent}-doc
Version: 2.45.6
Version: 2.45.7
Release: 0
Source: %{parent}-%{version}.tar.bz2

Expand Down
7 changes: 7 additions & 0 deletions package/libyui-qt-pkg.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Oct 10 14:04:41 UTC 2016 - jreidinger@suse.com

- Improve message shown when user want to quit without saving
changes (bsc#849084)
- 2.45.7

-------------------------------------------------------------------
Wed Nov 25 14:52:07 CET 2015 - gs@suse.de

Expand Down
2 changes: 1 addition & 1 deletion package/libyui-qt-pkg.spec
Expand Up @@ -17,7 +17,7 @@


Name: libyui-qt-pkg
Version: 2.45.6
Version: 2.45.7
Release: 0
Source: %{name}-%{version}.tar.bz2

Expand Down
6 changes: 3 additions & 3 deletions src/YQPackageSelectorBase.cc
Expand Up @@ -245,11 +245,11 @@ YQPackageSelectorBase::reject()
{
int result =
QMessageBox::warning( this, "",
_( "Abandon all changes?" ),
_( "&Abandon" ), _( "&Cancel" ), "",
_( "Do you want to Abandon all changes and exit?" ),
_( "&Yes" ), _( "&No" ), "",
1, // defaultButtonNumber (from 0)
1 ); // escapeButtonNumber

confirm = ( result == 0 );
}

Expand Down

0 comments on commit 84d6316

Please sign in to comment.