i_p suffix only for stuff not exported from qml

general rule:
if the header if from a class that will be made available as qml type, foo.h, otherwise foo_p.h
This commit is contained in:
Marco Martin 2011-11-01 19:27:55 +01:00
parent 43a069c681
commit 7a325f4658
10 changed files with 13 additions and 13 deletions

View File

@ -30,11 +30,11 @@
#include <Plasma/FrameSvg>
#include <Plasma/Svg>
#include "datasource_p.h"
#include "datasource.h"
#include "datamodel.h"
#include "framesvgitem_p.h"
#include "svgitem_p.h"
#include "theme_p.h"
#include "framesvgitem.h"
#include "svgitem.h"
#include "theme.h"
#include "dialog.h"
#include "tooltip.h"
#include "dataenginebindings_p.h"

View File

@ -18,7 +18,7 @@
*/
#include "datamodel.h"
#include "datasource_p.h"
#include "datasource.h"
#include <QTimer>

View File

@ -19,7 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "datasource_p.h"
#include "datasource.h"
#include "qdeclarativeengine.h"
#include "qdeclarativecontext.h"
@ -196,4 +196,4 @@ void DataSource::disconnectSource(const QString &source)
}
}
#include "datasource_p.moc"
#include "datasource.moc"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "framesvgitem_p.h"
#include "framesvgitem.h"
#include <QtGui/QPainter>
@ -130,4 +130,4 @@ void FrameSvgItem::doUpdate()
} // Plasma namespace
#include "framesvgitem_p.moc"
#include "framesvgitem.moc"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "svgitem_p.h"
#include "svgitem.h"
#include <QtGui/QPainter>
@ -124,4 +124,4 @@ void SvgItem::updateNeeded()
} // Plasma namespace
#include "svgitem_p.moc"
#include "svgitem.moc"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "theme_p.h"
#include "theme.h"
#include <KIconLoader>
@ -299,5 +299,5 @@ int ThemeProxy::enormousIconSize() const
return KIconLoader::SizeEnormous;
}
#include "theme_p.moc"
#include "theme.moc"