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:
Ingo Weinhold 2005-06-28 14:55:57 +00:00
parent 9351453415
commit 3c0a815896
2 changed files with 3 additions and 3 deletions

View File

@ -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),

View File

@ -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();