Skip to content
Snippets Groups Projects
Commit fa49c700 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Debugger: Fix compile warning about GlobalOption deletion.

in QSharedPointer.

Change-Id: Ida488ce33a74fe0fc06c31b42e44365f7d038356
Reviewed-on: http://codereview.qt.nokia.com/2347


Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@nokia.com>
parent a3ecfca8
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,10 @@ CommonOptionsPage::CommonOptionsPage(const QSharedPointer<GlobalDebuggerOptions> ...@@ -148,6 +148,10 @@ CommonOptionsPage::CommonOptionsPage(const QSharedPointer<GlobalDebuggerOptions>
{ {
} }
CommonOptionsPage::~CommonOptionsPage()
{
}
QString CommonOptionsPage::id() const QString CommonOptionsPage::id() const
{ {
return _(DEBUGGER_COMMON_SETTINGS_ID); return _(DEBUGGER_COMMON_SETTINGS_ID);
......
...@@ -73,6 +73,7 @@ class CommonOptionsPage : public Core::IOptionsPage ...@@ -73,6 +73,7 @@ class CommonOptionsPage : public Core::IOptionsPage
public: public:
explicit CommonOptionsPage(const QSharedPointer<GlobalDebuggerOptions> &go); explicit CommonOptionsPage(const QSharedPointer<GlobalDebuggerOptions> &go);
virtual ~CommonOptionsPage();
// IOptionsPage // IOptionsPage
QString id() const; QString id() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment