- fix: the count in the title of issues view isn't correct
This commit is contained in:
parent
6ba2d47c81
commit
69ba84fc86
3
NEWS.md
3
NEWS.md
|
@ -1,3 +1,6 @@
|
||||||
|
Version 0.9.3 For Dev-C++ 7 Beta
|
||||||
|
- fix: the count in the title of issues view isn't correct
|
||||||
|
|
||||||
Version 0.9.2 For Dev-C++ 7 Beta
|
Version 0.9.2 For Dev-C++ 7 Beta
|
||||||
- fix: gutter of the disassembly code control in the cpu info dialog is grayed
|
- fix: gutter of the disassembly code control in the cpu info dialog is grayed
|
||||||
- fix: problem set & problem views not correctly hidden when disabled in the executor / problem set options
|
- fix: problem set & problem views not correctly hidden when disabled in the executor / problem set options
|
||||||
|
|
|
@ -330,8 +330,9 @@ void CompilerManager::onSyntaxCheckIssue(PCompileIssue issue)
|
||||||
{
|
{
|
||||||
if (issue->type == CompileIssueType::Error)
|
if (issue->type == CompileIssueType::Error)
|
||||||
mSyntaxCheckErrorCount++;
|
mSyntaxCheckErrorCount++;
|
||||||
|
if (issue->type == CompileIssueType::Error ||
|
||||||
|
issue->type == CompileIssueType::Warning)
|
||||||
mSyntaxCheckIssueCount++;
|
mSyntaxCheckIssueCount++;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int CompilerManager::syntaxCheckIssueCount() const
|
int CompilerManager::syntaxCheckIssueCount() const
|
||||||
|
|
|
@ -506,7 +506,7 @@
|
||||||
<enum>QTabWidget::South</enum>
|
<enum>QTabWidget::South</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>6</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="iconSize">
|
<property name="iconSize">
|
||||||
<size>
|
<size>
|
||||||
|
@ -702,7 +702,7 @@
|
||||||
<enum>QTabWidget::North</enum>
|
<enum>QTabWidget::North</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>2</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tabDebugConsole">
|
<widget class="QWidget" name="tabDebugConsole">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
|
@ -1381,7 +1381,7 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>1114</width>
|
<width>1114</width>
|
||||||
<height>25</height>
|
<height>30</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QMenu" name="menuFile">
|
<widget class="QMenu" name="menuFile">
|
||||||
|
|
Loading…
Reference in New Issue