Skip to content
Snippets Groups Projects
Commit c2e3d877 authored by Tobias Hunger's avatar Tobias Hunger Committed by Daniel Molkentin
Browse files

Remove stale files


* stale being anything not in the list of project files which is in the
  list of git files that does not show up in a git grep. That gives a short
  list of files that were then sanity checked.

* Add madde_export.h to the relevant .pro-file while at it to stop it
  from showing up in the list mentioned above.

Change-Id: I787c88e08a45676bcdd256637339c630b1fa4b74
Reviewed-by: default avatarDaniel Molkentin <daniel.molkentin@nokia.com>
parent 844437c6
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ include(../../qtcreatorplugin.pri) ...@@ -5,6 +5,7 @@ include(../../qtcreatorplugin.pri)
include(madde_dependencies.pri) include(madde_dependencies.pri)
HEADERS += \ HEADERS += \
madde_exports.h \
maddeplugin.h \ maddeplugin.h \
maemoconstants.h \ maemoconstants.h \
maemorunconfigurationwidget.h \ maemorunconfigurationwidget.h \
......
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
**
** GNU Lesser General Public License Usage
**
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
#include "communitywelcomepage.h"
#include "communitywelcomepagewidget.h"
namespace Welcome {
namespace Internal {
CommunityWelcomePage::CommunityWelcomePage()
: m_page(0)
{
}
QWidget *CommunityWelcomePage::page()
{
if (!m_page)
m_page = new CommunityWelcomePageWidget;
return m_page;
}
} // namespace Internal
} // namespace Welcome
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