From 374e05c5ca30bb9322b1535617d8fff3592e760d Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Tue, 14 May 2013 11:53:33 +0200 Subject: [PATCH] Add ASSERTs again --- src/libtomahawk/sip/SipInfo.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libtomahawk/sip/SipInfo.cpp b/src/libtomahawk/sip/SipInfo.cpp index 5ea8824b4..d633cf1ef 100644 --- a/src/libtomahawk/sip/SipInfo.cpp +++ b/src/libtomahawk/sip/SipInfo.cpp @@ -120,6 +120,7 @@ SipInfo::setVisible( bool visible ) bool SipInfo::isVisible() const { + Q_ASSERT( isValid() ); return d->visible.toBool(); } @@ -134,6 +135,7 @@ SipInfo::setHost( const QString& host ) const QString SipInfo::host() const { + Q_ASSERT( isValid() ); return d->host; } @@ -148,6 +150,7 @@ SipInfo::setPort( int port ) int SipInfo::port() const { + Q_ASSERT( isValid() ); return d->port; } @@ -162,6 +165,7 @@ SipInfo::setNodeId( const QString& nodeId ) const QString SipInfo::nodeId() const { + Q_ASSERT( isValid() ); return d->nodeId; } @@ -176,6 +180,7 @@ SipInfo::setKey( const QString& key ) const QString SipInfo::key() const { + Q_ASSERT( isValid() ); return d->key; }