Skip to content
GitLab
Menu
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
7a0d73a1
Commit
7a0d73a1
authored
Jun 08, 2017
by
Martin Schultz
Browse files
made the Plugin loader check for crossPlatformConnectQueued signal
and call the respective slot
parent
75ba8364
Changes
1
Hide whitespace changes
Inline
Side-by-side
Core/PluginLoader.cc
View file @
7a0d73a1
...
...
@@ -1997,6 +1997,11 @@ void Core::loadPlugin(const QString& _filename,const bool _silent, QString& _lic
connect
(
plugin
,
SIGNAL
(
crossPluginConnect
(
QString
,
const
char
*
,
QString
,
const
char
*
)
),
this
,
SLOT
(
slotCrossPluginConnect
(
QString
,
const
char
*
,
QString
,
const
char
*
)
));
}
if
(
checkSignal
(
plugin
,
"crossPluginConnectQueued(QString,const char*,QString,const char*)"
)
)
{
connect
(
plugin
,
SIGNAL
(
crossPluginConnectQueued
(
QString
,
const
char
*
,
QString
,
const
char
*
)
),
this
,
SLOT
(
slotCrossPluginConnectQueued
(
QString
,
const
char
*
,
QString
,
const
char
*
)
));
}
}
//Check if the plugin supports RenderInterface
...
...
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