these includes don't belong in the header in the first place

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=833620
This commit is contained in:
Aaron J. Seigo 2008-07-17 07:53:31 +00:00
parent c63c0c7305
commit 93131a7cd2
2 changed files with 20 additions and 21 deletions

View File

@ -18,6 +18,7 @@
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "tooltipmanager.h"
//Qt
@ -30,15 +31,25 @@
//KDE
#include <KWindowSystem>
//X11
#ifdef Q_WS_X11
#include <QtGui/QX11Info>
#include <X11/Xlib.h>
#include <fixx11h.h>
#endif
//Plasma
#include <plasma/theme.h>
#include <plasma/panelsvg.h>
#include <plasma/tooltip_p.h>
#include <plasma/applet.h>
#include <plasma/view.h>
#include <plasma/containment.h>
#include <plasma/panelsvg.h>
#include <plasma/theme.h>
#include <plasma/tooltip_p.h>
#include <plasma/view.h>
namespace Plasma
{
class ToolTipManagerPrivate
{
public :

View File

@ -26,23 +26,11 @@
#include <plasma/plasma.h>
#include <plasma/plasma_export.h>
//KDE
#include <KDE/KWindowSystem>
#ifdef Q_WS_X11
#include <QtGui/QX11Info>
#endif
//X11
#ifdef Q_WS_X11
#include <X11/Xlib.h>
#include <fixx11h.h>
#endif
namespace Plasma
{
class ToolTipManagerPrivate;
class Applet;
class ToolTipManagerPrivate;
class Applet;
/**
* @short The class to manage tooltips on QGraphicsWidget in Plasma
@ -60,8 +48,8 @@ namespace Plasma
* will be invoked if it exists. This allows widgets to provide on-demand tooltip data.
*/
class PLASMA_EXPORT ToolTipManager : public QObject
{
class PLASMA_EXPORT ToolTipManager : public QObject
{
Q_OBJECT
public: