~vcs-imports/workrave/main

« back to all changes in this revision

Viewing changes to backend/src/Core.cc

  • Committer: rcaelers
  • Date: 2006-09-18 21:10:27 UTC
  • Revision ID: vcs-imports@canonical.com-20060918211027-64176d79c6a355da
dbus and menus fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
// GNU General Public License for more details.
15
15
//
16
16
 
17
 
static const char rcsid[] = "$Id: Core.cc,v 1.23 2006/09/18 19:09:30 dotsphinx Exp $";
 
17
static const char rcsid[] = "$Id: Core.cc,v 1.24 2006/09/18 21:10:27 rcaelers Exp $";
18
18
 
19
19
#ifdef HAVE_CONFIG_H
20
20
#include "config.h"
57
57
#include <gconf/gconf-client.h>
58
58
#endif
59
59
 
 
60
#ifdef HAVE_DBUS
 
61
#include "DBus.hh"
 
62
#endif
 
63
 
60
64
Core *Core::instance = NULL;
61
65
 
62
66
const char *WORKRAVESTATE="WorkRaveState";
168
172
 
169
173
  load_state();
170
174
  load_misc();
 
175
 
 
176
#ifdef HAVE_DBUS
 
177
  // FIXME: move..
 
178
  workrave_dbus_server_init(this);
 
179
#endif
171
180
}
172
181
 
173
182