Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
9f33e4d4
Commit
9f33e4d4
authored
3 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
wrap qaccordion to suppress Win warning
parent
6ca21b05
No related branches found
No related tags found
1 merge request
!446
avoid recompilation under WIN CI unless scheduled; get rid of MSVC warnings
Pipeline
#49057
failed
3 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GUI/View/Mask/MaskEditorPropertyPanel.cpp
+1
-2
1 addition, 2 deletions
GUI/View/Mask/MaskEditorPropertyPanel.cpp
GUI/View/Tool/Accordion.h
+22
-0
22 additions, 0 deletions
GUI/View/Tool/Accordion.h
GUI/View/Toplevel/TestView.cpp
+1
-2
1 addition, 2 deletions
GUI/View/Toplevel/TestView.cpp
with
24 additions
and
4 deletions
GUI/View/Mask/MaskEditorPropertyPanel.cpp
+
1
−
2
View file @
9f33e4d4
...
...
@@ -16,8 +16,7 @@
#include
"GUI/Model/Data/IntensityDataItem.h"
#include
"GUI/Model/Session/SessionModel.h"
#include
"GUI/View/PropertyEditor/ComponentEditor.h"
#include
<qAccordion/contentpane.h>
#include
"GUI/View/Tool/Accordion.h"
#include
<QListView>
#include
<QVBoxLayout>
...
...
This diff is collapsed.
Click to expand it.
GUI/View/Tool/Accordion.h
0 → 100644
+
22
−
0
View file @
9f33e4d4
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/Tool/Accordion.h
//! @brief Wraps include of headers from 3rdparty library qaccordion.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4267)
#endif
#include
<qAccordion/contentpane.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
This diff is collapsed.
Click to expand it.
GUI/View/Toplevel/TestView.cpp
+
1
−
2
View file @
9f33e4d4
...
...
@@ -22,8 +22,7 @@
#include
"GUI/View/Fit/MinimizerSettingsWidget.h"
#include
"GUI/View/PropertyEditor/TestComponentView.h"
#include
"GUI/View/SpecularData/Plot1DCanvas.h"
#include
<qAccordion/contentpane.h>
#include
"GUI/View/Tool/Accordion.h"
#include
<QCheckBox>
#include
<QLineEdit>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment