Skip to content

Commit

Permalink
Fixed an issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ic005k committed May 31, 2023
1 parent b8a0791 commit 30d63a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

extern MainWindow* mw_one;
extern QString strAppName, strIniFile;
QString CurVersion = "20230021";
QString CurVersion = "20230022";
QString ocVer = "0.8.8";
QString ocVerDev = "0.8.9";
QString ocFrom, ocFromDev, strOCFrom, strOCFromDev;
Expand Down
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3737,7 +3737,7 @@ void MainWindow::readResult() {

QString str1, str2;
for (int i = 0; i < str.count(); i++) {
if (str.mid(i, 1) == "*|*") {
if (str.mid(i, 1) == "|") {
str1 = str.mid(0, i).trimmed();
str2 = str.mid(i + 1, str.count() - i + 1).trimmed();
}
Expand Down
4 changes: 2 additions & 2 deletions src/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
<number>3</number>
<number>6</number>
</property>
<property name="iconSize">
<size>
Expand Down Expand Up @@ -6780,7 +6780,7 @@ A continuously updated variable list can be found in a corresponding document: N
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
<number>2</number>
<number>0</number>
</property>
<property name="documentMode">
<bool>true</bool>
Expand Down

0 comments on commit 30d63a8

Please sign in to comment.