Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
e59ba686
Commit
e59ba686
authored
Oct 29, 2014
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #912 from mavlink/qt54
Temporary libs fix for QWT for Qt 5.4
parents
9c48d0e9
71336d5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
qwt_transform.cpp
libs/qwt/qwt_transform.cpp
+2
-2
qwt_transform.h
libs/qwt/qwt_transform.h
+2
-2
No files found.
libs/qwt/qwt_transform.cpp
View file @
e59ba686
...
...
@@ -15,10 +15,10 @@
#endif
//! Smallest allowed value for logarithmic scales: 1.0e-150
QT_STATIC_CONST_IMPL
double
QwtLogTransform
::
LogMin
=
1.0e-150
;
const
double
QwtLogTransform
::
LogMin
=
1.0e-150
;
//! Largest allowed value for logarithmic scales: 1.0e150
QT_STATIC_CONST_IMPL
double
QwtLogTransform
::
LogMax
=
1.0e150
;
const
double
QwtLogTransform
::
LogMax
=
1.0e150
;
//! Constructor
QwtTransform
::
QwtTransform
()
...
...
libs/qwt/qwt_transform.h
View file @
e59ba686
...
...
@@ -107,8 +107,8 @@ public:
virtual
QwtTransform
*
copy
()
const
;
QT_STATIC_CONST
double
LogMin
;
QT_STATIC_CONST
double
LogMax
;
static
const
double
LogMin
;
static
const
double
LogMax
;
};
/*!
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment