File indexing completed on 2024-05-05 05:53:47

0001 /*
0002     SPDX-FileCopyrightText: 1997, 1998 Lars Doelle <lars.doelle@on-line.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 // Own
0008 #include "HistoryScroll.h"
0009 
0010 #include "HistoryType.h"
0011 
0012 using namespace Konsole;
0013 
0014 HistoryScroll::HistoryScroll(HistoryType *t)
0015     : _historyType(t)
0016 {
0017 }
0018 
0019 HistoryScroll::~HistoryScroll() = default;
0020 
0021 bool HistoryScroll::hasScroll() const
0022 {
0023     return true;
0024 }