diff options
Diffstat (limited to 'akregator/src/feeditem.cpp')
-rw-r--r-- | akregator/src/feeditem.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/feeditem.cpp b/akregator/src/feeditem.cpp index cb00e5c0f..8cdafeada 100644 --- a/akregator/src/feeditem.cpp +++ b/akregator/src/feeditem.cpp @@ -18,8 +18,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include "actionmanager.h" @@ -34,23 +34,23 @@ namespace Akregator { -FeedItem::FeedItem(FolderItem* parent, Feed* node) : TreeNodeItem(parent, node) +FeedItem::FeedItem(FolderItem* tqparent, Feed* node) : TreeNodeItem(tqparent, node) { initialize(node); } -FeedItem::FeedItem(KListView* parent, Feed* node) : TreeNodeItem(parent, node) +FeedItem::FeedItem(KListView* tqparent, Feed* node) : TreeNodeItem(tqparent, node) { initialize(node); } -FeedItem::FeedItem(KListView* parent, TreeNodeItem* after, Feed* node) : TreeNodeItem(parent, after, node) +FeedItem::FeedItem(KListView* tqparent, TreeNodeItem* after, Feed* node) : TreeNodeItem(tqparent, after, node) { initialize(node); } -FeedItem::FeedItem(FolderItem* parent, TreeNodeItem* after, Feed* node) : TreeNodeItem(parent, after, node) +FeedItem::FeedItem(FolderItem* tqparent, TreeNodeItem* after, Feed* node) : TreeNodeItem(tqparent, after, node) { initialize(node); } |