File indexing completed on 2024-05-05 04:57:29

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2010-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #include "twittertimelinewidget.h"
0010 
0011 TwitterTimelineWidget::TwitterTimelineWidget(Choqok::Account *account, const QString &timelineName,
0012         QWidget *parent)
0013     : TwitterApiTimelineWidget(account, timelineName, parent)
0014 {
0015     if (timelineName.startsWith(QLatin1Char('@'))) {
0016         setClosable();
0017     }
0018 }
0019 
0020 TwitterTimelineWidget::~TwitterTimelineWidget()
0021 {
0022 
0023 }
0024