Skip to content

Commit

Permalink
Merge pull request #127 from shundhammer/huha-qt-5-15-fixes
Browse files Browse the repository at this point in the history
Fixed Qt 5.15 Deprecated Warnings
  • Loading branch information
shundhammer committed Mar 24, 2020
2 parents 0e54e20 + de3299d commit 64c0106
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION.cmake
@@ -1,6 +1,6 @@
SET(VERSION_MAJOR "2")
SET(VERSION_MINOR "52")
SET(VERSION_PATCH "2")
SET(VERSION_PATCH "3")
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )

##### This is needed for the libyui-qt core ONLY.
Expand Down
2 changes: 1 addition & 1 deletion package/libyui-qt-doc.spec
Expand Up @@ -21,7 +21,7 @@

Name: %{parent}-doc
# DO NOT manually bump the version here; instead, use rake version:bump
Version: 2.52.2
Version: 2.52.3
Release: 0
Source: %{parent}-%{version}.tar.bz2

Expand Down
6 changes: 6 additions & 0 deletions package/libyui-qt.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Mar 24 16:18:31 UTC 2020 - Stefan Hundhammer <shundhammer@suse.com>

- Fixed Qt 5.15 deprecated warnings (bsc#1165118)
- 2.53.3

-------------------------------------------------------------------
Mon Feb 17 11:29:24 UTC 2020 - Stefan Hundhammer <shundhammer@suse.com>

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

Name: libyui-qt
# DO NOT manually bump the version here; instead, use rake version:bump
Version: 2.52.2
Version: 2.52.3
Release: 0
Source: %{name}-%{version}.tar.bz2

Expand Down
2 changes: 1 addition & 1 deletion src/QY2Styler.cc
Expand Up @@ -301,7 +301,7 @@ void QY2Styler::registerChildWidget( QWidget * parent, QWidget * widget )
{
// Don't use yuiDebug() here - deadlock (reason unknown so far) in thread handling!

qDebug() << "Registering " << widget << " for parent " << parent << endl;
qDebug() << "Registering " << widget << " for parent " << parent << Qt::endl;
widget->installEventFilter( this );
_children[parent].push_back( widget );
}
Expand Down
2 changes: 1 addition & 1 deletion src/YQComboBox.cc
Expand Up @@ -76,7 +76,7 @@ YQComboBox::YQComboBox( YWidget * parent,
this, &pclass(this)::slotSelected );
#endif

connect( _qt_comboBox, static_cast<void (QComboBox::*)(const QString&)>(&QComboBox::activated),
connect( _qt_comboBox, static_cast<void (QComboBox::*)(const QString&)>(&QComboBox::textActivated),
this, &pclass(this)::textChanged );

connect( _qt_comboBox, &pclass(_qt_comboBox)::editTextChanged,
Expand Down

0 comments on commit 64c0106

Please sign in to comment.