summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-26 23:51:25 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-26 23:51:25 +0200
commite52ed70c8e6e1abd8adc27dd0052328fa5f4deff (patch)
treec9fa2145c0a0a66f02fbfa7dee9f97c8f87f5ae0 /src
parentKDE mail Tool Invocation (diff)
downloadrekonq-e52ed70c8e6e1abd8adc27dd0052328fa5f4deff.tar.xz
Including moc files && lineedit class Q_OBJECT fix
Diffstat (limited to 'src')
-rw-r--r--src/findbar.cpp1
-rw-r--r--src/findbar.h1
-rw-r--r--src/lineedit.cpp1
-rw-r--r--src/lineedit.h2
-rw-r--r--src/modelmenu.cpp1
-rw-r--r--src/networkaccessmanager.cpp1
-rw-r--r--src/networkaccessmanager.h1
-rw-r--r--src/panelhistory.cpp2
-rw-r--r--src/sidepanel.cpp2
-rw-r--r--src/sidepanel.h1
-rw-r--r--src/stackedurlbar.cpp1
11 files changed, 8 insertions, 6 deletions
diff --git a/src/findbar.cpp b/src/findbar.cpp
index 76c313c5..fdd1c3fc 100644
--- a/src/findbar.cpp
+++ b/src/findbar.cpp
@@ -3,7 +3,6 @@
* This file is a part of the rekonq project
*
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
-* Copyright (C) 2009 rekonq team. Please, see AUTHORS file for details
*
*
* This program is free software; you can redistribute it
diff --git a/src/findbar.h b/src/findbar.h
index 3ff92631..15a82e1e 100644
--- a/src/findbar.h
+++ b/src/findbar.h
@@ -3,7 +3,6 @@
* This file is a part of the rekonq project
*
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
-* Copyright (C) 2009 rekonq team. Please, see AUTHORS file for details
*
*
* This program is free software; you can redistribute it
diff --git a/src/lineedit.cpp b/src/lineedit.cpp
index aa6a2755..bef65d27 100644
--- a/src/lineedit.cpp
+++ b/src/lineedit.cpp
@@ -19,6 +19,7 @@
// Self Includes
#include "lineedit.h"
+#include "lineedit.moc"
// Qt Includes
#include <QContextMenuEvent>
diff --git a/src/lineedit.h b/src/lineedit.h
index 202f1aba..2bc22fd3 100644
--- a/src/lineedit.h
+++ b/src/lineedit.h
@@ -34,6 +34,8 @@ class QKeyEvent;
class LineEdit : public KLineEdit
{
+Q_OBJECT
+
public:
explicit LineEdit(QWidget *parent = 0);
virtual ~LineEdit();
diff --git a/src/modelmenu.cpp b/src/modelmenu.cpp
index edfb329d..cc43a3f3 100644
--- a/src/modelmenu.cpp
+++ b/src/modelmenu.cpp
@@ -4,7 +4,6 @@
*
* Copyright (C) 2007-2008 Trolltech ASA. All rights reserved
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
-* Copyright (C) 2009 rekonq team. Please, see AUTHORS file for details
*
*
* This program is free software; you can redistribute it
diff --git a/src/networkaccessmanager.cpp b/src/networkaccessmanager.cpp
index 79109d7a..d3d46f60 100644
--- a/src/networkaccessmanager.cpp
+++ b/src/networkaccessmanager.cpp
@@ -4,7 +4,6 @@
*
* Copyright (C) 2007-2008 Trolltech ASA. All rights reserved
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
-* Copyright (C) 2009 rekonq team. Please, see AUTHORS file for details
*
*
* This program is free software; you can redistribute it
diff --git a/src/networkaccessmanager.h b/src/networkaccessmanager.h
index 4d3b34da..ebcd952d 100644
--- a/src/networkaccessmanager.h
+++ b/src/networkaccessmanager.h
@@ -4,7 +4,6 @@
*
* Copyright (C) 2007-2008 Trolltech ASA. All rights reserved
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
-* Copyright (C) 2009 rekonq team. Please, see AUTHORS file for details
*
*
* This program is free software; you can redistribute it
diff --git a/src/panelhistory.cpp b/src/panelhistory.cpp
index 20c9c311..57aa9281 100644
--- a/src/panelhistory.cpp
+++ b/src/panelhistory.cpp
@@ -20,6 +20,7 @@
// Self Includes
#include "panelhistory.h"
+#include "panelhistory.moc"
// QT Includes
#include <QLabel>
@@ -91,3 +92,4 @@ void PanelHistory::open()
return;
emit openUrl(index.data(HistoryModel::UrlRole).toUrl());
}
+
diff --git a/src/sidepanel.cpp b/src/sidepanel.cpp
index 761c3474..c4ba6c2a 100644
--- a/src/sidepanel.cpp
+++ b/src/sidepanel.cpp
@@ -19,6 +19,7 @@
// Self Includes
#include "sidepanel.h"
+#include "sidepanel.moc"
// Auto Includes
#include "rekonq.h"
@@ -49,3 +50,4 @@ SidePanel::~SidePanel()
delete m_panelHistory;
}
+
diff --git a/src/sidepanel.h b/src/sidepanel.h
index ce536527..ae1a76f1 100644
--- a/src/sidepanel.h
+++ b/src/sidepanel.h
@@ -20,7 +20,6 @@
#ifndef SIDEPANEL_H
#define SIDEPANEL_H
-
// Qt Includes
#include <QDockWidget>
diff --git a/src/stackedurlbar.cpp b/src/stackedurlbar.cpp
index 41867b9c..bd12ba2d 100644
--- a/src/stackedurlbar.cpp
+++ b/src/stackedurlbar.cpp
@@ -20,6 +20,7 @@
// Self Includes
#include "stackedurlbar.h"
+#include "stackedurlbar.moc"
// KDE Includes
#include "kdebug.h"