Skip to content
This repository has been archived by the owner on Sep 23, 2019. It is now read-only.

Commit

Permalink
Fixes error when compiling with GCC 4.1+
Browse files Browse the repository at this point in the history
  • Loading branch information
dekomote committed Mar 23, 2011
1 parent d0718d7 commit e42d3f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qtweetlib/qtweetstatus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class QTweetStatusData : public QSharedData
public:
QTweetStatusData() : id(0), inReplyToStatusId(0), retweetedStatus(0) {}

QTweetStatusData::QTweetStatusData(const QTweetStatusData& other) : QSharedData(other)
QTweetStatusData(const QTweetStatusData& other) : QSharedData(other)
{
id = other.id;
text = other.text;
Expand All @@ -52,7 +52,7 @@ class QTweetStatusData : public QSharedData
}
}

QTweetStatusData::~QTweetStatusData()
~QTweetStatusData()
{
delete retweetedStatus;
}
Expand Down

0 comments on commit e42d3f9

Please sign in to comment.