File indexing completed on 2024-04-28 04:37:33

0001 /*
0002     SPDX-FileCopyrightText: 2006-2007 Alexander Dymo <adymo@kdevelop.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "mainwindowoperator.h"
0008 
0009 #include "mainwindow.h"
0010 
0011 namespace Sublime {
0012 
0013 void MainWindowOperator::setArea(MainWindow *w, Area *area)
0014 {
0015     w->setArea(area);
0016 }
0017 
0018 void MainWindowOperator::clearArea(MainWindow *w)
0019 {
0020     w->clearArea();
0021 }
0022 
0023 void MainWindowOperator::setActiveView(MainWindow *w, View *view)
0024 {
0025     w->activateView(view);
0026 }
0027 
0028 void MainWindowOperator::setActiveToolView(MainWindow *w, View *view)
0029 {
0030     w->setActiveToolView(view);
0031 }
0032 
0033 }