~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/irc/libkirc/kernel/kircevent.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    kircmessage.cpp - IRC Client
 
3
 
 
4
    Copyright (c) 2003-2007 by Michel Hermier <michel.hermier@gmail.com>
 
5
 
 
6
    Kopete    (c) 2003-2007 by the Kopete developers <kopete-devel@kde.org>
 
7
 
 
8
    *************************************************************************
 
9
    *                                                                       *
 
10
    * This program is free software; you can redistribute it and/or modify  *
 
11
    * it under the terms of the GNU General Public License as published by  *
 
12
    * the Free Software Foundation; either version 2 of the License, or     *
 
13
    * (at your option) any later version.                                   *
 
14
    *                                                                       *
 
15
    *************************************************************************
 
16
*/
 
17
 
 
18
#include "kircevent.h"
 
19
 
 
20
using namespace KIrc;
 
21
 
 
22
const QEvent::Type KIrc::CommandEvent::Type = (QEvent::Type)QEvent::registerEventType();
 
23
 
 
24
const QEvent::Type KIrc::MessageEvent::Type = (QEvent::Type)QEvent::registerEventType();
 
25
 
 
26
const QEvent::Type KIrc::TextEvent::Type = (QEvent::Type)QEvent::registerEventType();
 
27