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
Tobias Hunger
qt-creator
Commits
b4d9a234
Commit
b4d9a234
authored
Sep 24, 2010
by
Leandro Melo
Browse files
Add destructor to BaseHoverHandler.
parent
cafcce0c
Changes
2
Show whitespace changes
Inline
Side-by-side
src/plugins/texteditor/basehoverhandler.cpp
View file @
b4d9a234
...
...
@@ -52,6 +52,9 @@ BaseHoverHandler::BaseHoverHandler(QObject *parent) : QObject(parent)
this
,
SLOT
(
editorOpened
(
Core
::
IEditor
*
)));
}
BaseHoverHandler
::~
BaseHoverHandler
()
{}
void
BaseHoverHandler
::
editorOpened
(
Core
::
IEditor
*
editor
)
{
if
(
acceptEditor
(
editor
))
{
...
...
src/plugins/texteditor/basehoverhandler.h
View file @
b4d9a234
...
...
@@ -54,6 +54,7 @@ class TEXTEDITOR_EXPORT BaseHoverHandler : public QObject
Q_OBJECT
public:
BaseHoverHandler
(
QObject
*
parent
=
0
);
virtual
~
BaseHoverHandler
();
private
slots
:
void
editorOpened
(
Core
::
IEditor
*
editor
);
...
...
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