view ui/administrator.cpp @ 402:bae8d4a20ef1

Added strings for add and remove in table view combobox.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 16 Apr 2014 11:03:53 +0200
parents de94c4ec22b1
children 17e1c8f37d72
line wrap: on
line source
#include "administratorwindow.h"

#include <QApplication>
#include <QtPlugin>
#include <QMessageBox>
#include <QSettings>

#ifndef VERSION
#define VERSION "0.0.1"
#endif

#ifndef APPNAME
#define APPNAME "administrator"
#endif

#ifndef ORGANIZATION
#define ORGANIZATION "m13org"
#endif

#ifdef Q_OS_WIN
 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
#else
 Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
#endif

int main(int argc, char **argv)
{
    QApplication app (argc, argv);

    QStringList arguments = QApplication::arguments();

    QApplication::setOrganizationName(QString::fromLatin1(ORGANIZATION));
    QApplication::setApplicationName(QString::fromLatin1(APPNAME));
    QApplication::setApplicationVersion(QString::fromLatin1(VERSION));
    QSettings::setDefaultFormat(QSettings::IniFormat);

    AdministratorWindow adminWin;
    adminWin.show();

    return app.exec();
}

http://wald.intevation.org/projects/trustbridge/