X-Git-Url: http://cgit.babelmonkeys.de/?p=jubjub.git;a=blobdiff_plain;f=src%2Fcore%2FJubConfig.m;h=fd92233ce5ff22b8c0a6fac2889f5c055be46523;hp=b8a5f5a3f3652d1ba489d45493c8ec261cc4ca3f;hb=d4efe21c5972e934b33fd70d42a407124c8a746b;hpb=bfecc06eee92ced72c224a4d2c98dbdb8f08d3f2 diff --git a/src/core/JubConfig.m b/src/core/JubConfig.m index b8a5f5a..fd92233 100644 --- a/src/core/JubConfig.m +++ b/src/core/JubConfig.m @@ -5,6 +5,7 @@ @synthesize server = _server;; @synthesize username = _username; @synthesize password = _password; +@synthesize frontend = _frontend; - initWithFile: (OFString*)file { @@ -35,6 +36,10 @@ _password = [[[element elementForName: @"password" namespace: CONFIG_NS] stringValue] copy]; + _frontend = [[[element + elementForName: @"frontend" + namespace: CONFIG_NS] stringValue] copy]; + [pool release]; } @catch (id e) { @@ -51,6 +56,7 @@ [_server release]; [_username release]; [_password release]; + [_frontend release]; [super dealloc]; }