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:
@@ -42,7 +42,7 @@ static const bigtime_t kRosterSanityEventInterval = 1000000LL;
|
|||||||
error code.
|
error code.
|
||||||
*/
|
*/
|
||||||
Registrar::Registrar(status_t *error)
|
Registrar::Registrar(status_t *error)
|
||||||
: BApplication(kRegistrarSignature, error),
|
: BServer(kRegistrarSignature, false, error),
|
||||||
fRoster(NULL),
|
fRoster(NULL),
|
||||||
fClipboardHandler(NULL),
|
fClipboardHandler(NULL),
|
||||||
fMIMEManager(NULL),
|
fMIMEManager(NULL),
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
#ifndef REGISTRAR_H
|
#ifndef REGISTRAR_H
|
||||||
#define REGISTRAR_H
|
#define REGISTRAR_H
|
||||||
|
|
||||||
#include <Application.h>
|
#include <Server.h>
|
||||||
|
|
||||||
class ClipboardHandler;
|
class ClipboardHandler;
|
||||||
class DiskDeviceManager;
|
class DiskDeviceManager;
|
||||||
@@ -39,7 +39,7 @@ namespace BPrivate {
|
|||||||
class TRoster;
|
class TRoster;
|
||||||
};
|
};
|
||||||
|
|
||||||
class Registrar : public BApplication {
|
class Registrar : public BServer {
|
||||||
public:
|
public:
|
||||||
Registrar(status_t *error);
|
Registrar(status_t *error);
|
||||||
virtual ~Registrar();
|
virtual ~Registrar();
|
||||||
|
|||||||
Reference in New Issue
Block a user