The registrar now uses BServer instead of BApplication, which makes it
completely independent of the app server. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13316 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
9351453415
commit
3c0a815896
@ -42,7 +42,7 @@ static const bigtime_t kRosterSanityEventInterval = 1000000LL;
|
||||
error code.
|
||||
*/
|
||||
Registrar::Registrar(status_t *error)
|
||||
: BApplication(kRegistrarSignature, error),
|
||||
: BServer(kRegistrarSignature, false, error),
|
||||
fRoster(NULL),
|
||||
fClipboardHandler(NULL),
|
||||
fMIMEManager(NULL),
|
||||
|
@ -26,7 +26,7 @@
|
||||
#ifndef REGISTRAR_H
|
||||
#define REGISTRAR_H
|
||||
|
||||
#include <Application.h>
|
||||
#include <Server.h>
|
||||
|
||||
class ClipboardHandler;
|
||||
class DiskDeviceManager;
|
||||
@ -39,7 +39,7 @@ namespace BPrivate {
|
||||
class TRoster;
|
||||
};
|
||||
|
||||
class Registrar : public BApplication {
|
||||
class Registrar : public BServer {
|
||||
public:
|
||||
Registrar(status_t *error);
|
||||
virtual ~Registrar();
|
||||
|
Loading…
Reference in New Issue
Block a user