File: AboutBox.cpp

package info (click to toggle)
linssid 3.6-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,424 kB
  • sloc: cpp: 1,667; xml: 51; sh: 17; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * File:   aboutBox.cpp
 * Author: warren
 *
 * Created on November 20, 2012, 8:12 PM
 */

#include <string>
#include "AboutBox.h"
#include "Custom.h"
using namespace std;

AboutBox::AboutBox() {
    widget.setupUi(this);
    std::string version = std::string("Version ") + std::string(LINSSIDVERSION);
    widget.aboutVersion->setText(version.c_str());
}

AboutBox::~AboutBox() {
}