Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Plugin-MeshConvert
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
Plugin-MeshConvert
Compare Revisions
ba83cbc6a2a750b13283175b37b0560011844633...e7b3905afe75d9c77eb80836791c95415d3b60f2
Source
e7b3905afe75d9c77eb80836791c95415d3b60f2
Select Git revision
...
Target
ba83cbc6a2a750b13283175b37b0560011844633
Select Git revision
Compare
Commits (1)
Don't use deprecated updatedObject slot anymore
· e7b3905a
Jan Möbius
authored
May 02, 2018
e7b3905a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
MeshConvert.cc
MeshConvert.cc
+2
-2
MeshConvert.hh
MeshConvert.hh
+1
-1
No files found.
MeshConvert.cc
View file @
e7b3905a
...
...
@@ -132,7 +132,7 @@ int MeshConvertPlugin::convert(int _id, bool _toTriMesh)
if
(
PluginFunctions
::
getMesh
(
newID
,
t
))
{
*
t
=
converted
;
emit
updatedObject
(
newID
);
emit
updatedObject
(
newID
,
UPDATE_ALL
);
}
}
else
...
...
@@ -144,7 +144,7 @@ int MeshConvertPlugin::convert(int _id, bool _toTriMesh)
if
(
PluginFunctions
::
getMesh
(
newID
,
p
))
{
*
p
=
converted
;
emit
updatedObject
(
newID
);
emit
updatedObject
(
newID
,
UPDATE_ALL
);
}
}
}
...
...
MeshConvert.hh
View file @
e7b3905a
...
...
@@ -79,7 +79,7 @@ signals:
void
addEmptyObject
(
DataType
_type
,
int
&
_id
);
// BaseInterface
void
updatedObject
(
int
_objectId
);
void
updatedObject
(
int
,
const
UpdateType
&
_type
);
// ScriptInterface
void
setSlotDescription
(
QString
_slotName
,
QString
_slotDescription
,
...
...