~ubuntu-branches/ubuntu/karmic/mumble/karmic-updates

« back to all changes in this revision

Viewing changes to src/mumble/Log.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Matthäi, Patrick Matthäi, Thorvald Natvig
  • Date: 2009-02-04 10:32:16 UTC
  • mfrom: (1.2.1 upstream) (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090204103216-vqx5fmlruwzn3uh2
[ Patrick Matthäi ]
* Add a mumble-dbg package, which contains the debugging symbols of mumble
  and mumble-server.
* Move swedish translation debian/sv.po to debian/po/sv.po.
  This was a bad error of mine.
* Remove debian/patches and dpatch, everything has been merged by upstream.

[ Thorvald Natvig ]
* New upstream release.
  Closes: #513119
* Added Spanish translation from Álvaro M. Recio
* Synchronized copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2005-2008, Thorvald Natvig <thorvald@natvig.com>
 
1
/* Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
2
2
 
3
3
   All rights reserved.
4
4
 
38
38
class TextToSpeech;
39
39
 
40
40
class LogConfig : public ConfigWidget, public Ui::LogConfig {
 
41
        private:
41
42
                Q_OBJECT
 
43
                Q_DISABLE_COPY(LogConfig)
42
44
        public:
43
45
                LogConfig(Settings &st);
44
46
                virtual QString title() const;
52
54
 
53
55
class Log : public QObject {
54
56
                friend class LogConfig;
 
57
        private:
55
58
                Q_OBJECT
 
59
                Q_DISABLE_COPY(Log)
56
60
        public:
57
61
                enum MsgType { DebugInfo, CriticalError, Warning, Information, ServerConnected, ServerDisconnected, PlayerJoin, PlayerLeave, YouKicked, PlayerKicked, SelfMute, OtherSelfMute, YouMuted, YouMutedOther, OtherMutedOther, ChannelJoin, ChannelLeave, PermissionDenied, TextMessage };
58
62
                static const MsgType firstMsgType = DebugInfo;