~feng-kylin/youker-assistant/youker-assistant

« back to all changes in this revision

Viewing changes to src/commonobject.cpp

  • Committer: kobe
  • Date: 2015-02-13 07:37:10 UTC
  • Revision ID: xiangli@ubuntukylin.com-20150213073710-0jyp02ilyi5njj10
Qt Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "commonobject.h"
2
 
 
3
 
CommonObject::CommonObject(QObject *parent) :
4
 
    QObject(parent)
5
 
{
6
 
}
7
 
 
8
 
 
9
 
QString CommonObject::get_locale_version() {
10
 
    QString locale = QLocale::system().name();
11
 
    return locale;
12
 
}