Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
6b207ed1
Commit
6b207ed1
authored
May 07, 2016
by
Hans-Christian Ebke
Browse files
Width and heigth should be int, not bool.
parent
953ee670
Changes
4
Hide whitespace changes
Inline
Side-by-side
Core/Core.cc
View file @
6b207ed1
...
...
@@ -1458,7 +1458,7 @@ void Core::viewerSnapshot(){
void
Core
::
viewerSnapshot
(
QString
file_name
,
bool
store_comments
,
bool
comments_visible_only
,
bool
comments_targeted_only
,
bool
store_material_info
,
bool
snapshot_width
,
bool
snapshot_height
,
bool
store_material_info
,
int
snapshot_width
,
int
snapshot_height
,
bool
snapshot_transparent
,
bool
hide_coord_sys
,
int
snapshot_multisampling
,
bool
store_view
)
{
...
...
Core/Core.hh
View file @
6b207ed1
...
...
@@ -722,7 +722,7 @@ public slots:
/// Scriptable snapshot method offering full control
void
viewerSnapshot
(
QString
file_name
,
bool
store_comments
,
bool
comments_visible_only
,
bool
comments_targeted_only
,
bool
store_material_info
,
bool
snapshot_width
,
bool
snapshot_height
,
bool
store_material_info
,
int
snapshot_width
,
int
snapshot_height
,
bool
snapshot_transparent
,
bool
hide_coord_sys
,
int
snapshot_multisampling
,
bool
store_view
);
...
...
widgets/coreWidget/CoreWidget.hh
View file @
6b207ed1
...
...
@@ -1025,7 +1025,7 @@ public:
/// Scriptable snapshot method offering full control
void
viewerSnapshot
(
QString
file_name
,
bool
store_comments
,
bool
comments_visible_only
,
bool
comments_targeted_only
,
bool
store_material_info
,
bool
snapshot_width
,
bool
snapshot_height
,
bool
store_material_info
,
int
snapshot_width
,
int
snapshot_height
,
bool
snapshot_transparent
,
bool
hide_coord_sys
,
int
snapshot_multisampling
,
bool
store_view
);
...
...
widgets/coreWidget/viewerControl.cc
View file @
6b207ed1
...
...
@@ -543,7 +543,7 @@ void CoreWidget::applicationSnapshot() {
void
CoreWidget
::
viewerSnapshot
(
QString
file_ame
,
bool
store_comments
,
bool
comments_visible_only
,
bool
comments_targeted_only
,
bool
store_material_info
,
bool
snapshot_width
,
bool
snapshot_height
,
bool
store_material_info
,
int
snapshot_width
,
int
snapshot_height
,
bool
snapshot_transparent
,
bool
hide_coord_sys
,
int
snapshot_multisampling
,
bool
store_view
)
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment