Skip to content

Commit 30d63a8

Browse files
committed
Fixed an issue.
1 parent b8a0791 commit 30d63a8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/aboutdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
extern MainWindow* mw_one;
99
extern QString strAppName, strIniFile;
10-
QString CurVersion = "20230021";
10+
QString CurVersion = "20230022";
1111
QString ocVer = "0.8.8";
1212
QString ocVerDev = "0.8.9";
1313
QString ocFrom, ocFromDev, strOCFrom, strOCFromDev;

src/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3737,7 +3737,7 @@ void MainWindow::readResult() {
37373737

37383738
QString str1, str2;
37393739
for (int i = 0; i < str.count(); i++) {
3740-
if (str.mid(i, 1) == "*|*") {
3740+
if (str.mid(i, 1) == "|") {
37413741
str1 = str.mid(0, i).trimmed();
37423742
str2 = str.mid(i + 1, str.count() - i + 1).trimmed();
37433743
}

src/mainwindow.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
<enum>QTabWidget::Rounded</enum>
267267
</property>
268268
<property name="currentIndex">
269-
<number>3</number>
269+
<number>6</number>
270270
</property>
271271
<property name="iconSize">
272272
<size>
@@ -6780,7 +6780,7 @@ A continuously updated variable list can be found in a corresponding document: N
67806780
<enum>QTabWidget::Rounded</enum>
67816781
</property>
67826782
<property name="currentIndex">
6783-
<number>2</number>
6783+
<number>0</number>
67846784
</property>
67856785
<property name="documentMode">
67866786
<bool>true</bool>

0 commit comments

Comments
 (0)