File: data.cpp

package info (click to toggle)
postbooks-updater 2.2.5-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 944 kB
  • ctags: 479
  • sloc: cpp: 5,424; sh: 351; makefile: 23; sql: 7
file content (33 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (2)
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
29
30
31
32
33
/*
 * This file is part of the xTuple ERP: PostBooks Edition, a free and
 * open source Enterprise Resource Planning software suite,
 * Copyright (c) 1999-2010 by OpenMFG LLC, d/b/a xTuple.
 * It is licensed to you under the Common Public Attribution License
 * version 1.0, the full text of which (including xTuple-specific Exhibits)
 * is available at www.xtuple.com/CPAL.  By using this software, you agree
 * to be bound by its terms.
 */

#include "data.h"

#include <QObject>

#if defined Q_WS_WIN
QString _name = QObject::tr("Update Manager for Windows");
#elif defined Q_WS_X11
QString _name = QObject::tr("Update Manager for Linux");
#elif defined Q_WS_MAC
QString _name = QObject::tr("Update Manager for Mac");
#else
QString _name = QObject::tr("Update Manager");
#endif


QString _copyright = QObject::tr("Copyright (c) 2004-2011 OpenMFG, LLC., d/b/a xTuple.");
QString _version = QObject::tr("2.2.5");

QString _user;
int     _usrid;

bool _evaluation = FALSE;
bool _loggedIn = FALSE;