~ubuntu-branches/ubuntu/raring/qgo/raring

« back to all changes in this revision

Viewing changes to src/msg_handler.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin A. Godisch
  • Date: 2005-01-01 23:07:10 UTC
  • Revision ID: james.westby@ubuntu.com-20050101230710-fhng6yidm47xlb2i
Tags: upstream-1.0.0-r2
ImportĀ upstreamĀ versionĀ 1.0.0-r2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   msg_handler.h
 
3
 */
 
4
 
 
5
#ifndef MSG_HANDLER_H
 
6
#define MSG_HANDLER_H
 
7
 
 
8
#undef OWN_DEBUG_MODE
 
9
// comment following message if no "-debug" command allowed
 
10
// DON'T DO IT - THERE'S A PROBLEM I MUST SOLVE SOON ... but now it works fine
 
11
#define OWN_DEBUG_MODE
 
12
 
 
13
 
 
14
 
 
15
#include <qapplication.h>
 
16
#include <qtextview.h>
 
17
 
 
18
void myMessageHandler(QtMsgType, const char*);
 
19
 
 
20
#ifdef OWN_DEBUG_MODE
 
21
extern QTextView *view;
 
22
#endif
 
23
 
 
24
#endif