From 3fdab54b56eff66ed121931a0737d61f9bc619c5 Mon Sep 17 00:00:00 2001 From: Manjeet Dahiya Date: Tue, 23 Feb 2010 11:58:27 +0000 Subject: fix for compile time warning messages --- source/QXmppStanza.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/QXmppStanza.cpp') diff --git a/source/QXmppStanza.cpp b/source/QXmppStanza.cpp index e62ae5eb..b02b1a0c 100644 --- a/source/QXmppStanza.cpp +++ b/source/QXmppStanza.cpp @@ -32,16 +32,16 @@ uint QXmppStanza::s_uniqeIdNo = 0; QXmppStanza::Error::Error(): - m_type(static_cast(-1)), m_code(0), + m_type(static_cast(-1)), m_condition(static_cast(-1)), m_text("") { } QXmppStanza::Error::Error(Type type, Condition cond, const QString& text): - m_type(type), m_code(0), + m_type(type), m_condition(cond), m_text(text) { -- cgit v1.2.3