Subversion Repositories Projects

Rev

Rev 801 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 801 Rev 813
Line 25... Line 25...
25
// Konstruktor Main-Form
25
// Konstruktor Main-Form
26
dlg_Main::dlg_Main()
26
dlg_Main::dlg_Main()
27
{
27
{
28
    setupUi(this);
28
    setupUi(this);
Line 29... Line -...
29
 
-
 
30
 
29
 
31
    o_Settings = new cSettings();
-
 
32
 
30
    o_Settings = new cSettings();
Line 33... Line 31...
33
    o_Settings->read_DebugLabels(0);
31
    o_Settings->read_DebugLabels(0);
Line 34... Line 32...
34
 
32
 
Line 201... Line 199...
201
 
199
 
Line 202... Line 200...
202
    o_Settings->read_DebugLabels(gs_Version.ID);
200
    o_Settings->read_DebugLabels(gs_Version.ID);
203
 
201
 
204
    if (o_Settings->DebugData.Version != gs_Version.Version)
202
    if (o_Settings->DebugData.Version != gs_Version.Version)
205
    {
203
    {
Line 206... Line 204...
206
        qDebug(QString("Debug-Labels unterschiedlich. Neue anforden. " + o_Settings->DebugData.Version + " <> " + gs_Version.Version).toLatin1().data());
204
        qDebug() << "Debug-Labels unterschiedlich. Neue anforden. " << o_Settings->DebugData.Version << " <> " << gs_Version.Version.toLatin1().data();
207
        usleep(50000);
205
        usleep(50000);
208
 
206