summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_browseriface.cc
blob: ebec2ef043beeda898b2d21d95d54f6480f59703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include "konq_browseriface.h"
#include "konq_view.h"

KonqBrowserInterface::KonqBrowserInterface( KonqView *view, const char *name )
    : KParts::BrowserInterface( view, name )
{
    m_view = view;
}

uint KonqBrowserInterface::historyLength() const
{
    return m_view->historyLength();
}

void KonqBrowserInterface::goHistory( int steps )
{
    m_view->goHistory( steps );
}

#include "konq_browseriface.moc"