Added status bar (simon savary)

CQTexperiment
vspader 2006-04-14 00:32:33 +00:00
parent e5944d3563
commit 36a9a86159
3 changed files with 3 additions and 1 deletions

View File

@ -56,6 +56,7 @@
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{CLASS = InfoController; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{CLASS = InfoView; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = NSSegmentedControl; LANGUAGE = ObjC; SUPERCLASS = NSControl; },
{
ACTIONS = {
changeVolume = id;

Binary file not shown.

View File

@ -60,7 +60,8 @@ File::File(const char *file)
d = new FilePrivate(::strdup(file));
d->readOnly = !isWritable(file);
d->file = fopen(file, d->readOnly ? "r" : "r+");
// d->file = fopen(file, d->readOnly ? "r" : "r+");
d->file = fopen(file, "r");
if(!d->file)
debug("Could not open file " + String(file));