mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 11:20:22 +02:00
Change QWeakPointer to QPointer to make it compile again
This commit is contained in:
@@ -461,8 +461,8 @@ Tomahawk::EchonestControl::updateWidgets()
|
|||||||
m_matchString = "is";
|
m_matchString = "is";
|
||||||
m_matchData = 1;
|
m_matchData = 1;
|
||||||
|
|
||||||
m_match = QWeakPointer< QWidget >( match );
|
m_match = QPointer< QWidget >( match );
|
||||||
m_input = QWeakPointer< QWidget >( combo );
|
m_input = QPointer< QWidget >( combo );
|
||||||
} else {
|
} else {
|
||||||
m_match = QPointer<QWidget>( new QWidget );
|
m_match = QPointer<QWidget>( new QWidget );
|
||||||
m_input = QPointer<QWidget>( new QWidget );
|
m_input = QPointer<QWidget>( new QWidget );
|
||||||
|
Reference in New Issue
Block a user