Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
Plugin-PropertyVis
Commits
83f680d1
Commit
83f680d1
authored
Dec 03, 2019
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some warnings
parent
79111a5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
OpenMesh/OMPropertyModelT_impl.hh
OpenMesh/OMPropertyModelT_impl.hh
+3
-3
No files found.
OpenMesh/OMPropertyModelT_impl.hh
View file @
83f680d1
...
...
@@ -70,8 +70,8 @@ OMPropertyModel<MeshT>::OMPropertyModel(MeshT* mesh, int objectID, QObject *pare
:
OMPropertyModelSubclass
(
parent
),
mesh_
(
mesh
),
objectID_
(
objectID
),
mCombineProperty1
(
0
),
mCombineProperty2
(
0
),
mCombineProperty1
(
nullptr
),
mCombineProperty2
(
nullptr
),
pickModeActive
(
false
)
{
gatherProperties
();
...
...
@@ -263,7 +263,7 @@ bool OMPropertyModel<MeshT>::parseHeader(QString header, PropertyVisualizer*& pr
TypeInfoWrapper
typeInfo
=
getSupportedTypeInfoWrapper
(
friendlyName
);
QString
propName
=
QInputDialog
::
getText
(
0
,
"Property Name"
,
"Please enter name."
,
QLineEdit
::
Normal
,
headerParts
[
4
]);
QString
propName
=
QInputDialog
::
getText
(
nullptr
,
"Property Name"
,
"Please enter name."
,
QLineEdit
::
Normal
,
headerParts
[
4
]);
if
(
propName
==
""
)
return
false
;
bool
replace
=
false
;
...
...
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