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
OpenFlipper
Commits
5c6d2df3
Commit
5c6d2df3
authored
Jun 13, 2017
by
Martin Schultz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made the signals of PluginConnection interface pure virtual
parent
7a26a497
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
BasePlugin/PluginConnectionInterface.hh
BasePlugin/PluginConnectionInterface.hh
+2
-2
No files found.
BasePlugin/PluginConnectionInterface.hh
View file @
5c6d2df3
...
...
@@ -86,7 +86,7 @@ class PluginConnectionInterface {
* _slot is the slot name. Use it like with regular connect ( <tt>SLOT(...)</tt> ) macro
*
*/
virtual
void
crossPluginConnect
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
{}
;
virtual
void
crossPluginConnect
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
=
0
;
/** \brief connect signals and slots of plugins across plugins using Qt::QueuedConnection
*
...
...
@@ -97,7 +97,7 @@ class PluginConnectionInterface {
* _slot is the slot name. Use it like with regular connect ( <tt>SLOT(...)</tt> ) macro
*
*/
virtual
void
crossPluginConnectQueued
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
{}
;
virtual
void
crossPluginConnectQueued
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
=
0
;
public
:
...
...
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