typo fix
[pykit.git] / MainWindow.cc
1 // $Id$
2 //
3 // Copyright (C) 2010
4 //     Stefan Bund <info@j32.de>
5
6 /** \file
7     \brief MainWindow non-inline non-template implementation */
8
9 #include "MainWindow.hh"
10 //#include "MainWindow.ih"
11
12 // Custom includes
13 #include "Viewer.hh"
14
15 //#include "MainWindow.mpp"
16 #define prefix_
17 ///////////////////////////////cc.p////////////////////////////////////////
18
19 prefix_ pykit::MainWindow::MainWindow(QUrl const & url, Publisher * publisher,
20                                       QWidget * parent)
21     : QMainWindow (parent)
22 {
23     Viewer * view = new Viewer(url, publisher, this);
24     setCentralWidget(view);
25 }
26
27 ///////////////////////////////cc.e////////////////////////////////////////
28 #undef prefix_
29 //#include "MainWindow.mpp"
30
31 \f
32 // Local Variables:
33 // mode: c++
34 // fill-column: 100
35 // comment-column: 40
36 // c-file-style: "j32"
37 // indent-tabs-mode: nil
38 // ispell-local-dictionary: "american"
39 // compile-command: "scons -U"
40 // End: