[SCM] ktp-common-internals packaging branch, master, updated. debian/15.12.1-2-1839-gf0635e9

Maximiliano Curia maxy at moszumanska.debian.org
Mon May 9 09:05:14 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-common-internals.git;a=commitdiff;h=b3db101

The following commit has been merged in the master branch:
commit b3db101cc09a85677197121a37c31d34395b003a
Author: Lasath Fernando <kde at lasath.org>
Date:   Tue Apr 17 20:10:22 2012 +1000

    Move definition of AbstractMessageFilter
    
    Since the class declaration was ripped out of message-processor.h,
    it makes sense that the definition should also follow.
---
 KTp/abstract-message-filter.cpp | 27 +++++++++++++++++++++++++++
 KTp/message-processor.cpp       |  9 ---------
 2 files changed, 27 insertions(+), 9 deletions(-)

diff --git a/KTp/abstract-message-filter.cpp b/KTp/abstract-message-filter.cpp
index 8b13789..2a3a897 100644
--- a/KTp/abstract-message-filter.cpp
+++ b/KTp/abstract-message-filter.cpp
@@ -1 +1,28 @@
+/*
+    Copyright (C) 2012  Lasath Fernando <kde at lasath.org>
 
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+
+#include "abstract-message-filter.h"
+
+AbstractMessageFilter::AbstractMessageFilter(QObject* parent)
+    : QObject(parent)
+{
+}
+
+AbstractMessageFilter::~AbstractMessageFilter()
+{
+}
\ No newline at end of file
diff --git a/KTp/message-processor.cpp b/KTp/message-processor.cpp
index a9b409e..ebef0fa 100644
--- a/KTp/message-processor.cpp
+++ b/KTp/message-processor.cpp
@@ -22,15 +22,6 @@
 
 MessageProcessor* MessageProcessor::s_instance = 0;
 
-AbstractMessageFilter::AbstractMessageFilter(QObject* parent)
-    : QObject(parent)
-{
-}
-
-AbstractMessageFilter::~AbstractMessageFilter()
-{
-}
-
 MessageProcessor* MessageProcessor::instance()
 {
     static QMutex mutex;

-- 
ktp-common-internals packaging



More information about the pkg-kde-commits mailing list