summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-sheet/main.cpp
blob: e42b4a53fa1e5a7289f6473b2c73c55a8ee6c5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

/*
 * Opie Sheet (formerly Sheet/Qt)
 * by Serdar Ozler <sozler@sitebest.com>
 */

#include <qpe/qpeapplication.h>

#include "mainwindow.h"

int main(int argc, char **argv)
{
  QPEApplication application(argc, argv);

  MainWindow windowMain;
  windowMain.setHelpFile(application.qpeDir()+"/help/html/"+QString(argv[0])+".html");
  application.showMainDocumentWidget(&windowMain);

  return application.exec();
}