Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Dec 9, 2023
1 parent e256096 commit 3572408
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "Modules/createDatabase.cpp"
#include "Modules/settings.cpp"

const QString logFileName = "debug.log";


void customeMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg){

Expand Down
4 changes: 2 additions & 2 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ MainWindow::MainWindow(QWidget *parent)
}
}
qInfo() << "Die '.log' Datei ist "
<< (QFile(QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)+"/.log").size() / 1e6)
<< " Mb groß!";
<< (QFile(QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)+"/.log").size() / 1e6)
<< " Mb groß!";

#ifdef QT_DEBUG
// Debug Sachen
Expand Down
5 changes: 4 additions & 1 deletion mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</rect>
</property>
<property name="currentIndex">
<number>0</number>
<number>1</number>
</property>
<widget class="QWidget" name="tab_einfach">
<attribute name="title">
Expand Down Expand Up @@ -974,6 +974,9 @@
<property name="text">
<string>instabil</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
Expand Down
5 changes: 3 additions & 2 deletions ui_mainwindow.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 6.5.0
** Created by: Qt User Interface Compiler version 6.6.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
Expand Down Expand Up @@ -623,6 +623,7 @@ class Ui_MainWindow
QFont font2;
font2.setPointSize(10);
BeInstabilTpc->setFont(font2);
BeInstabilTpc->setCheckable(true);
BeInstabilTpc->setChecked(true);
BeNormalTpc = new QRadioButton(groupBox);
BeNormalTpc->setObjectName("BeNormalTpc");
Expand Down Expand Up @@ -1851,7 +1852,7 @@ class Ui_MainWindow

retranslateUi(MainWindow);

mainTabWidget->setCurrentIndex(0);
mainTabWidget->setCurrentIndex(1);
BtnCalcEinfach->setDefault(true);


Expand Down

0 comments on commit 3572408

Please sign in to comment.