@@ -47,7 +47,7 @@ using namespace sim;
47
47
48
48
// Register SerializedStepMap to the Qt meta type system so we can pass objects
49
49
// of this type in QMetaObject::invokeMethod
50
- Q_DECLARE_METATYPE (msgs::SerializedStepMap)
50
+ Q_DECLARE_METATYPE (gz:: msgs::SerializedStepMap)
51
51
52
52
// ///////////////////////////////////////////////
53
53
class gz::sim::GuiRunner::Implementation
@@ -109,7 +109,7 @@ class gz::sim::GuiRunner::Implementation
109
109
GuiRunner::GuiRunner (const std::string &_worldName)
110
110
: dataPtr(utils::MakeUniqueImpl<Implementation>())
111
111
{
112
- qRegisterMetaType<msgs::SerializedStepMap>();
112
+ qRegisterMetaType<gz:: msgs::SerializedStepMap>();
113
113
114
114
this ->setProperty (" worldName" , QString::fromStdString (_worldName));
115
115
@@ -263,7 +263,7 @@ void GuiRunner::OnStateAsyncService(const msgs::SerializedStepMap &_res)
263
263
// ensures that only one thread has access to the ecm and updateInfo
264
264
// variables.
265
265
QMetaObject::invokeMethod (this , " OnStateQt" , Qt::QueuedConnection,
266
- Q_ARG (msgs::SerializedStepMap, _res));
266
+ Q_ARG (gz:: msgs::SerializedStepMap, _res));
267
267
this ->dataPtr ->receivedInitialState = true ;
268
268
269
269
// todo(anyone) store reqSrv string in a member variable and use it here
@@ -289,7 +289,7 @@ void GuiRunner::OnState(const msgs::SerializedStepMap &_msg)
289
289
// ensures that only one thread has access to the ecm and updateInfo
290
290
// variables.
291
291
QMetaObject::invokeMethod (this , " OnStateQt" , Qt::QueuedConnection,
292
- Q_ARG (msgs::SerializedStepMap, _msg));
292
+ Q_ARG (gz:: msgs::SerializedStepMap, _msg));
293
293
}
294
294
295
295
// ///////////////////////////////////////////////
0 commit comments