Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Merge requests
!105
Fix some Coverity and SonarCube bugs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix some Coverity and SonarCube bugs
cordronn/vite:coverity-sonarcube
into
master
Overview
0
Commits
4
Pipelines
5
Changes
6
Merged
ORDRONNEAU Camille
requested to merge
cordronn/vite:coverity-sonarcube
into
master
11 months ago
Overview
0
Commits
4
Pipelines
5
Changes
6
Expand
These commits should fix some bugs reported by Coverity and SonarCube
0
0
Merge request reports
Compare
master
version 4
a6bbf6cd
11 months ago
version 3
eb13ed50
11 months ago
version 2
f987bbd9
11 months ago
version 1
e836e0f6
11 months ago
master (base)
and
latest version
latest version
d54ad8e9
4 commits,
10 months ago
version 4
a6bbf6cd
9 commits,
11 months ago
version 3
eb13ed50
4 commits,
11 months ago
version 2
f987bbd9
4 commits,
11 months ago
version 1
e836e0f6
4 commits,
11 months ago
6 files
+
29
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
src/common/Export.cpp
+
1
−
1
Options
@@ -209,7 +209,7 @@ void Export::open_export_window(QWidget *parent, RenderLayout *render_layout) {
void
Export
::
open_export_variable_window
(
const
std
::
map
<
std
::
string
,
Variable
*>
&
variable_list
,
const
std
::
string
&
export_filename
)
{
Ui_counter_choice_box
export_variable_window
;
QDialog
dialog_box
;
QDialog
dialog_box
(
nullptr
)
;
export_variable_window
.
setupUi
(
&
dialog_box
);
for
(
std
::
map
<
std
::
string
,
Variable
*>::
const_iterator
it
=
variable_list
.
begin
();
Loading