[SCM] ktp-text-ui packaging branch, master, updated. debian/15.12.1-1-1918-gdf4b0ec

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:20:54 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=077081a

The following commit has been merged in the master branch:
commit 077081a243dd2ed160af63a7ed42744def3ff5d0
Author: Lasath Fernando <kde at lasath.org>
Date:   Tue Jan 10 20:51:59 2012 +1100

    Code style issue. Changed all pointer declarations
        type* variable;
    to
        type *variable;
    and
        return_type *method();
    to
        return_type* method();
    with some bash, sed and regexp magic.
---
 lib/adium-theme-content-info.h    |  2 +-
 lib/adium-theme-header-info.h     |  2 +-
 lib/adium-theme-message-info.h    |  2 +-
 lib/adium-theme-status-info.h     |  2 +-
 lib/adium-theme-view.cpp          |  2 +-
 lib/adium-theme-view.h            |  4 ++--
 lib/chat-search-bar.cpp           |  4 ++--
 lib/chat-search-bar.h             |  2 +-
 lib/chat-text-edit.cpp            |  4 ++--
 lib/chat-widget.cpp               |  4 ++--
 lib/chat-widget.h                 |  2 +-
 lib/chat-window-style-manager.cpp |  4 ++--
 lib/chat-window-style-manager.h   |  6 +++---
 lib/conversation-que-manager.cpp  | 14 +++++++-------
 lib/conversation-que-manager.h    | 10 +++++-----
 lib/conversation-target.cpp       |  2 +-
 lib/conversation-target.h         |  2 +-
 lib/conversation.cpp              | 12 ++++++------
 lib/conversation.h                | 10 +++++-----
 lib/conversations-model.cpp       |  4 ++--
 lib/conversations-model.h         |  4 ++--
 lib/logmanager.cpp                |  6 +++---
 lib/logmanager.h                  |  4 ++--
 lib/messages-model.cpp            |  6 +++---
 lib/messages-model.h              |  4 ++--
 lib/qml-plugins.cpp               |  2 +-
 lib/qml-plugins.h                 |  2 +-
 27 files changed, 61 insertions(+), 61 deletions(-)

diff --git a/lib/adium-theme-content-info.h b/lib/adium-theme-content-info.h
index e293732..4e5c437 100644
--- a/lib/adium-theme-content-info.h
+++ b/lib/adium-theme-content-info.h
@@ -68,7 +68,7 @@ public:
     //textBackgroundColor
 
 private:
-    AdiumThemeContentInfoPrivate* d;
+    AdiumThemeContentInfoPrivate *d;
 };
 
 #endif // ADIUMTHEMECONTENTINFO_H
diff --git a/lib/adium-theme-header-info.h b/lib/adium-theme-header-info.h
index 952dc48..5b5c769 100644
--- a/lib/adium-theme-header-info.h
+++ b/lib/adium-theme-header-info.h
@@ -74,7 +74,7 @@ public:
     void setTimeOpened(const QDateTime &timeOpened);
 
 private:
-    AdiumThemeHeaderInfoPrivate* const d;
+    AdiumThemeHeaderInfoPrivate *const d;
 
 };
 
diff --git a/lib/adium-theme-message-info.h b/lib/adium-theme-message-info.h
index 10c00a2..50bfc4a 100644
--- a/lib/adium-theme-message-info.h
+++ b/lib/adium-theme-message-info.h
@@ -65,7 +65,7 @@ public:
     void appendMessageClass(const QString& messageClass);
 
 private:
-    AdiumThemeMessageInfoPrivate* d;
+    AdiumThemeMessageInfoPrivate *d;
 };
 
 #endif // ADIUMTHEMEMESSAGEINFO_H
diff --git a/lib/adium-theme-status-info.h b/lib/adium-theme-status-info.h
index 926586a..7dd073e 100644
--- a/lib/adium-theme-status-info.h
+++ b/lib/adium-theme-status-info.h
@@ -41,7 +41,7 @@ public:
     void setStatus(const QString& status);
 
 private:
-    AdiumThemeStatusInfoPrivate* d;
+    AdiumThemeStatusInfoPrivate *d;
 };
 
 #endif // ADIUMTHEMESTATUSINFO_H
diff --git a/lib/adium-theme-view.cpp b/lib/adium-theme-view.cpp
index 6970e8d..c437817 100644
--- a/lib/adium-theme-view.cpp
+++ b/lib/adium-theme-view.cpp
@@ -219,7 +219,7 @@ void AdiumThemeView::setVariant(const QString &variant)
 
 }
 
-ChatWindowStyle* AdiumThemeView::chatStyle() const
+ChatWindowStyle *AdiumThemeView::chatStyle() const
 {
     return m_chatStyle;
 }
diff --git a/lib/adium-theme-view.h b/lib/adium-theme-view.h
index c2fae74..be90d65 100644
--- a/lib/adium-theme-view.h
+++ b/lib/adium-theme-view.h
@@ -59,10 +59,10 @@ public:
     const QString variantPath() const;
     const QString variantName() const;
     void setVariant(const QString& variant);
-    ChatWindowStyle *chatStyle() const;
+    ChatWindowStyle* chatStyle() const;
 
     /** Set the theme to use. Display will only change once initialise() is called.*/
-    void setChatStyle(ChatWindowStyle* chatStyle);
+    void setChatStyle(ChatWindowStyle *chatStyle);
     void setUseCustomFont(bool);
     QString fontFamily();
     int fontSize();
diff --git a/lib/chat-search-bar.cpp b/lib/chat-search-bar.cpp
index 15aa5da..d0a3480 100644
--- a/lib/chat-search-bar.cpp
+++ b/lib/chat-search-bar.cpp
@@ -29,7 +29,7 @@
 #include <QDebug>
 #include <QHBoxLayout>
 
-ChatSearchBar::ChatSearchBar(QWidget* parent)
+ChatSearchBar::ChatSearchBar(QWidget *parent)
     : QWidget(parent)
     , m_searchInput(new KLineEdit(this))
     , m_closeButton(new KPushButton(this))
@@ -94,7 +94,7 @@ QWebPage::FindFlags ChatSearchBar::findFlags()
     return flags;
 }
 
-KLineEdit* ChatSearchBar::searchBar() const
+KLineEdit *ChatSearchBar::searchBar() const
 {
     return m_searchInput;
 }
diff --git a/lib/chat-search-bar.h b/lib/chat-search-bar.h
index 315fd2b..2b3b11c 100644
--- a/lib/chat-search-bar.h
+++ b/lib/chat-search-bar.h
@@ -40,7 +40,7 @@ public:
     ChatSearchBar(QWidget *parent = 0);
     virtual ~ChatSearchBar();
 
-    KLineEdit *searchBar() const;
+    KLineEdit* searchBar() const;
 
 public Q_SLOTS:
     void onNextButtonClicked();
diff --git a/lib/chat-text-edit.cpp b/lib/chat-text-edit.cpp
index b0476f5..2985aee 100644
--- a/lib/chat-text-edit.cpp
+++ b/lib/chat-text-edit.cpp
@@ -71,7 +71,7 @@ QSize ChatTextEdit::sizeHint() const
     return sh;
 }
 
-void ChatTextEdit::keyPressEvent(QKeyEvent* e)
+void ChatTextEdit::keyPressEvent(QKeyEvent *e)
 {
     if (e->key()==Qt::Key_Return && !e->modifiers()) {
         Q_EMIT returnKeyPressed();
@@ -116,7 +116,7 @@ bool ChatTextEdit::event(QEvent *e)
     return KTextEdit::event(e);
 }
 
-void ChatTextEdit::resizeEvent(QResizeEvent* e)
+void ChatTextEdit::resizeEvent(QResizeEvent *e)
 {
     KTextEdit::resizeEvent(e);
     QTimer::singleShot(0, this, SLOT(updmessageBoxEventFilterateScrollBar()));
diff --git a/lib/chat-widget.cpp b/lib/chat-widget.cpp
index 5494b7a..75acef0 100644
--- a/lib/chat-widget.cpp
+++ b/lib/chat-widget.cpp
@@ -254,7 +254,7 @@ bool ChatWidget::isGroupChat() const
     return d->isGroupChat;
 }
 
-ChatSearchBar* ChatWidget::chatSearchBar() const
+ChatSearchBar *ChatWidget::chatSearchBar() const
 {
     return d->ui.searchBar;
 }
@@ -293,7 +293,7 @@ Tp::TextChannelPtr ChatWidget::textChannel() const
     return d->channel;
 }
 
-void ChatWidget::keyPressEvent(QKeyEvent* e)
+void ChatWidget::keyPressEvent(QKeyEvent *e)
 {
     if (e->matches(QKeySequence::Copy)) {
         d->ui.chatArea->triggerPageAction(QWebPage::Copy);
diff --git a/lib/chat-widget.h b/lib/chat-widget.h
index 30afa31..fda3106 100644
--- a/lib/chat-widget.h
+++ b/lib/chat-widget.h
@@ -52,7 +52,7 @@ public:
     Tp::AccountPtr account() const;
 
     /** Returns a pointer to the Chatwidget's search bar */
-    ChatSearchBar *chatSearchBar() const;
+    ChatSearchBar* chatSearchBar() const;
 
     /** Returns the icon of this chat window */
     KIcon icon() const;
diff --git a/lib/chat-window-style-manager.cpp b/lib/chat-window-style-manager.cpp
index 8604c97..235fc53 100644
--- a/lib/chat-window-style-manager.cpp
+++ b/lib/chat-window-style-manager.cpp
@@ -128,7 +128,7 @@ int ChatWindowStyleManager::installStyle(const QString &styleBundlePath)
    }
 
    KArchiveEntry *currentEntry = 0L;
-   KArchiveDirectory* currentDir = 0L;
+   KArchiveDirectory *currentDir = 0L;
    KArchive *archive = 0L;
 
    QString currentBundleMimeType = KMimeType::findByPath(styleBundlePath, 0, false)->name();
@@ -164,7 +164,7 @@ int ChatWindowStyleManager::installStyle(const QString &styleBundlePath)
        return StyleCannotOpen;
    }
 
-   const KArchiveDirectory* rootDir = archive->directory();
+   const KArchiveDirectory *rootDir = archive->directory();
 
    // Ok where we go to check if the archive is valid.
    // Each time we found a correspondance to a theme bundle, we add a point to validResult.
diff --git a/lib/chat-window-style-manager.h b/lib/chat-window-style-manager.h
index c876ba8..3e38022 100644
--- a/lib/chat-window-style-manager.h
+++ b/lib/chat-window-style-manager.h
@@ -67,7 +67,7 @@ public:
      * Singleton access to this class.
      * @return the single instance of this class.
      */
-    static ChatWindowStyleManager *self();
+    static ChatWindowStyleManager* self();
 
     /**
      * List all availables styles.
@@ -108,7 +108,7 @@ public Q_SLOTS:
      * @return the instance of ChatWindow for the specified style or 0 if valid style
      *         wasn't found. DO NOT DELETE IT.
      */
-    ChatWindowStyle *getStyleFromPool(const QString &styleName);
+    ChatWindowStyle* getStyleFromPool(const QString &styleName);
 
     /**
      * Get a instance of a ChatWindowStyle from the pool.
@@ -121,7 +121,7 @@ public Q_SLOTS:
      * @return the instance of ChatWindow for the specified style or 0 if valid style
      *         wasn't found. DO NOT DELETE IT.
      */
-    ChatWindowStyle *getValidStyleFromPool(const QString &styleName);
+    ChatWindowStyle* getValidStyleFromPool(const QString &styleName);
 
 Q_SIGNALS:
     /**
diff --git a/lib/conversation-que-manager.cpp b/lib/conversation-que-manager.cpp
index dbdb426..a7b347a 100644
--- a/lib/conversation-que-manager.cpp
+++ b/lib/conversation-que-manager.cpp
@@ -23,7 +23,7 @@
 class ConversationQueManager::ConversationQueManagerPrivate {
 public:
     QList<Queable*> que;
-    KAction* gloablAction;
+    KAction *gloablAction;
 };
 
 void Queable::enqueSelf()
@@ -40,7 +40,7 @@ Queable::~Queable()
 {
 }
 
-Queable::Queable(ConversationQueManager* que)
+Queable::Queable(ConversationQueManager *que)
     : m_queManager(que)
 {
     if(!que) {
@@ -48,9 +48,9 @@ Queable::Queable(ConversationQueManager* que)
     }
 }
 
-ConversationQueManager* ConversationQueManager::instance()
+ConversationQueManager *ConversationQueManager::instance()
 {
-    static ConversationQueManager* m_instance = 0;
+    static ConversationQueManager *m_instance = 0;
 
     if(!m_instance) {
         m_instance = new ConversationQueManager();
@@ -59,7 +59,7 @@ ConversationQueManager* ConversationQueManager::instance()
     return m_instance;
 }
 
-ConversationQueManager::ConversationQueManager(QObject* parent):
+ConversationQueManager::ConversationQueManager(QObject *parent):
     QObject(parent),
     d(new ConversationQueManagerPrivate)
 {
@@ -82,14 +82,14 @@ void ConversationQueManager::dequeNext()
     }
 }
 
-void ConversationQueManager::enque(Queable* item)
+void ConversationQueManager::enque(Queable *item)
 {
     if(!d->que.contains(item)) {
         d->que.append(item);
     }
 }
 
-void ConversationQueManager::remove(Queable* item)
+void ConversationQueManager::remove(Queable *item)
 {
     if(d->que.contains(item)) {
         d->que.removeAll(item);
diff --git a/lib/conversation-que-manager.h b/lib/conversation-que-manager.h
index 98d3a37..e8ab426 100644
--- a/lib/conversation-que-manager.h
+++ b/lib/conversation-que-manager.h
@@ -29,7 +29,7 @@ class Queable
 friend class ConversationQueManager;
 
 protected:
-    Queable(ConversationQueManager* queue = 0);
+    Queable(ConversationQueManager *queue = 0);
     virtual ~Queable();
 
     void enqueSelf();
@@ -37,7 +37,7 @@ protected:
     virtual void selfDequed() = 0;
 
 private:
-    ConversationQueManager* m_queManager;
+    ConversationQueManager *m_queManager;
 };
 
 
@@ -47,14 +47,14 @@ Q_OBJECT
 
 public:
     static ConversationQueManager* instance();
-    void enque(Queable* item);
-    void remove(Queable* item);
+    void enque(Queable *item);
+    void remove(Queable *item);
 
 public Q_SLOTS:
     void dequeNext();
 
 private:
-    explicit ConversationQueManager(QObject* parent = 0);
+    explicit ConversationQueManager(QObject *parent = 0);
     virtual ~ConversationQueManager();
 
     class ConversationQueManagerPrivate;
diff --git a/lib/conversation-target.cpp b/lib/conversation-target.cpp
index ddb22a4..9e1b86f 100644
--- a/lib/conversation-target.cpp
+++ b/lib/conversation-target.cpp
@@ -29,7 +29,7 @@ public:
     KIcon avatar;
 };
 
-ConversationTarget::ConversationTarget(Tp::ContactPtr contact, QObject* parent) :
+ConversationTarget::ConversationTarget(Tp::ContactPtr contact, QObject *parent) :
     QObject(parent),
     d(new ConversationTargetPrivate)
 {
diff --git a/lib/conversation-target.h b/lib/conversation-target.h
index 3357d00..47c686b 100644
--- a/lib/conversation-target.h
+++ b/lib/conversation-target.h
@@ -39,7 +39,7 @@ class KDE_TELEPATHY_CHAT_EXPORT ConversationTarget : public QObject
     Q_PROPERTY(QString id READ id)
 
 public:
-    ConversationTarget(Tp::ContactPtr contact, QObject* parent = 0);
+    ConversationTarget(Tp::ContactPtr contact, QObject *parent = 0);
     virtual ~ConversationTarget();
 
     QIcon   avatar() const;
diff --git a/lib/conversation.cpp b/lib/conversation.cpp
index a5eefd1..5d48948 100644
--- a/lib/conversation.cpp
+++ b/lib/conversation.cpp
@@ -27,12 +27,12 @@
 class Conversation::ConversationPrivate
 {
 public:
-    MessagesModel* model;
-    ConversationTarget* target;
+    MessagesModel *model;
+    ConversationTarget *target;
 //     Tp::AccountPtr account;
 };
 
-Conversation::Conversation(const Tp::TextChannelPtr& channel, const Tp::AccountPtr& account, QObject* parent) :
+Conversation::Conversation(const Tp::TextChannelPtr& channel, const Tp::AccountPtr& account, QObject *parent) :
         QObject(parent),
         d (new ConversationPrivate)
 {
@@ -47,18 +47,18 @@ Conversation::Conversation(const Tp::TextChannelPtr& channel, const Tp::AccountP
 //     d->account = account;
 }
 
-Conversation::Conversation(QObject* parent) : QObject(parent)
+Conversation::Conversation(QObject *parent) : QObject(parent)
 {
     kError() << "Conversation should not be created directly. Use ConversationWatcher instead.";
     Q_ASSERT(false);
 }
 
-MessagesModel* Conversation::model() const
+MessagesModel *Conversation::model() const
 {
     return d->model;
 }
 
-ConversationTarget* Conversation::target() const
+ConversationTarget *Conversation::target() const
 {
     return d->target;
 }
diff --git a/lib/conversation.h b/lib/conversation.h
index 5c99329..9538c3f 100644
--- a/lib/conversation.h
+++ b/lib/conversation.h
@@ -36,14 +36,14 @@ class KDE_TELEPATHY_CHAT_EXPORT Conversation : public QObject
 {
 Q_OBJECT
 
-// Q_PROPERTY(ConversationTarget* target READ target CONSTANT);
-Q_PROPERTY(ConversationTarget* target READ target CONSTANT);
+// Q_PROPERTY(ConversationTarget *target READ target CONSTANT);
+Q_PROPERTY(ConversationTarget *target READ target CONSTANT);
 //TODO: rename this to messages
-Q_PROPERTY(MessagesModel* model READ model CONSTANT);
+Q_PROPERTY(MessagesModel *model READ model CONSTANT);
 
 public:
-    Conversation(const Tp::TextChannelPtr &channel, const Tp::AccountPtr &account, QObject* parent = 0);
-    Conversation(QObject* parent = 0);
+    Conversation(const Tp::TextChannelPtr &channel, const Tp::AccountPtr &account, QObject *parent = 0);
+    Conversation(QObject *parent = 0);
     virtual ~Conversation();
 
     //FIXME: rename model to messages
diff --git a/lib/conversations-model.cpp b/lib/conversations-model.cpp
index 514e1da..e02acee 100644
--- a/lib/conversations-model.cpp
+++ b/lib/conversations-model.cpp
@@ -47,7 +47,7 @@ int ConversationsModel::rowCount(const QModelIndex& parent) const
     return d->conversations.count();
 }
 
-ConversationsModel::ConversationsModel(QObject* parent) :
+ConversationsModel::ConversationsModel(QObject *parent) :
         QAbstractListModel(parent),
         d(new ConversationsModelPrivate)
 {
@@ -58,7 +58,7 @@ ConversationsModel::ConversationsModel(QObject* parent) :
     QObject::connect(&d->watcher, SIGNAL(newConversation(Conversation*)), SLOT(onInconmingConversation(Conversation*)));
 }
 
-void ConversationsModel::onInconmingConversation(Conversation* newConvo)
+void ConversationsModel::onInconmingConversation(Conversation *newConvo)
 {
     //check if conversation's channel is already being handled, if so replace it
     bool handled = false;
diff --git a/lib/conversations-model.h b/lib/conversations-model.h
index d5c32d4..6d38c3d 100644
--- a/lib/conversations-model.h
+++ b/lib/conversations-model.h
@@ -31,7 +31,7 @@ class KDE_TELEPATHY_CHAT_EXPORT ConversationsModel : public QAbstractListModel
 {
 Q_OBJECT
 public:
-    explicit ConversationsModel(QObject* parent = 0);
+    explicit ConversationsModel(QObject *parent = 0);
     virtual ~ConversationsModel();
 
     virtual QVariant data ( const QModelIndex& index, int role = Qt::DisplayRole ) const;
@@ -43,7 +43,7 @@ public:
 
 private:
     class ConversationsModelPrivate;
-    ConversationsModelPrivate* d;
+    ConversationsModelPrivate *d;
 
 private Q_SLOTS:
     void onInconmingConversation(Conversation *convo);
diff --git a/lib/logmanager.cpp b/lib/logmanager.cpp
index ee89809..e0a92aa 100644
--- a/lib/logmanager.cpp
+++ b/lib/logmanager.cpp
@@ -111,7 +111,7 @@ void LogManager::fetchLast()
 }
 
 #ifdef TELEPATHY_LOGGER_QT4_FOUND
-void LogManager::onDatesFinished(Tpl::PendingOperation* po)
+void LogManager::onDatesFinished(Tpl::PendingOperation *po)
 {
     Tpl::PendingDates *pd = (Tpl::PendingDates*) po;
 
@@ -127,7 +127,7 @@ void LogManager::onDatesFinished(Tpl::PendingOperation* po)
 
         kDebug() << pd->account()->uniqueIdentifier() << pd->entity()->identifier() << dates;
 
-        Tpl::PendingEvents* events = m_logManager->queryEvents( pd->account(), pd->entity(), Tpl::EventTypeMaskAny, date);
+        Tpl::PendingEvents *events = m_logManager->queryEvents( pd->account(), pd->entity(), Tpl::EventTypeMaskAny, date);
         connect(events, SIGNAL(finished(Tpl::PendingOperation*)), SLOT(onEventsFinished(Tpl::PendingOperation*)));
     } else {
         QList<AdiumThemeContentInfo> messages;
@@ -135,7 +135,7 @@ void LogManager::onDatesFinished(Tpl::PendingOperation* po)
     }
 }
 
-void LogManager::onEventsFinished(Tpl::PendingOperation* po)
+void LogManager::onEventsFinished(Tpl::PendingOperation *po)
 {
     Tpl::PendingEvents *pe = (Tpl::PendingEvents*) po;
 
diff --git a/lib/logmanager.h b/lib/logmanager.h
index 5d44f6c..83bd5e3 100644
--- a/lib/logmanager.h
+++ b/lib/logmanager.h
@@ -56,8 +56,8 @@ Q_SIGNALS:
 
 #ifdef TELEPATHY_LOGGER_QT4_FOUND
 private Q_SLOTS:
-    void onDatesFinished(Tpl::PendingOperation* po);
-    void onEventsFinished(Tpl::PendingOperation* po);
+    void onDatesFinished(Tpl::PendingOperation *po);
+    void onEventsFinished(Tpl::PendingOperation *po);
 #endif
 
 private:
diff --git a/lib/messages-model.cpp b/lib/messages-model.cpp
index bb1f025..3b4d4db 100644
--- a/lib/messages-model.cpp
+++ b/lib/messages-model.cpp
@@ -53,7 +53,7 @@ public:
     bool visible;
 };
 
-MessagesModel::MessagesModel(QObject* parent):
+MessagesModel::MessagesModel(QObject *parent):
         QAbstractListModel(parent),
         d(new MessagesModelPrivate)
 {
@@ -74,7 +74,7 @@ Tp::TextChannelPtr MessagesModel::textChannel()
     return d->textChannel;
 }
 
-bool MessagesModel::verifyPendingOperation(Tp::PendingOperation* op)
+bool MessagesModel::verifyPendingOperation(Tp::PendingOperation *op)
 {
     bool operationSucceeded = true;
 
@@ -181,7 +181,7 @@ QVariant MessagesModel::data(const QModelIndex& index, int role) const
     QVariant result;
 
     if (index.isValid()) {
-        MessageItem* requestedData = &d->messages[index.row()];
+        MessageItem *requestedData = &d->messages[index.row()];
 
         switch (role) {
         case UserRole:
diff --git a/lib/messages-model.h b/lib/messages-model.h
index bcae07a..7467f57 100644
--- a/lib/messages-model.h
+++ b/lib/messages-model.h
@@ -34,7 +34,7 @@ class KDE_TELEPATHY_CHAT_EXPORT MessagesModel : public QAbstractListModel, publi
     Q_PROPERTY(int unreadCount READ unreadCount NOTIFY unreadCountChanged);
 
 public:
-    MessagesModel(QObject* parent = 0);
+    MessagesModel(QObject *parent = 0);
     virtual ~MessagesModel();
 
     enum Roles {
@@ -71,7 +71,7 @@ public Q_SLOTS:
 private Q_SLOTS:
     void onMessageReceived(Tp::ReceivedMessage);
     void onMessageSent(Tp::Message,Tp::MessageSendingFlags,QString);
-    bool verifyPendingOperation(Tp::PendingOperation* op);
+    bool verifyPendingOperation(Tp::PendingOperation *op);
 
 private:
     void setupChannelSignals(Tp::TextChannelPtr channel);
diff --git a/lib/qml-plugins.cpp b/lib/qml-plugins.cpp
index fa5fe56..05ed88d 100644
--- a/lib/qml-plugins.cpp
+++ b/lib/qml-plugins.cpp
@@ -26,7 +26,7 @@
 #include "conversations-model.h"
 #include "conversation-target.h"
 
-void QmlPlugins::registerTypes ( const char* uri )
+void QmlPlugins::registerTypes ( const char *uri )
 {
     qmlRegisterType<TelepathyTextObserver> ( uri, 0, 1, "TelepathyTextObserver" );
     qmlRegisterType<Conversation>(uri, 0, 1, "Conversation");
diff --git a/lib/qml-plugins.h b/lib/qml-plugins.h
index 316400e..eb8cfd4 100644
--- a/lib/qml-plugins.h
+++ b/lib/qml-plugins.h
@@ -25,7 +25,7 @@
 class QmlPlugins : public QDeclarativeExtensionPlugin
 {
 public:
-    virtual void registerTypes(const char* uri);
+    virtual void registerTypes(const char *uri);
 };
 
 #endif // QML_PLUGINS_H

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list