Fixed bug with having to specify your home directory.

This commit is contained in:
mikep%oeone.com 2001-11-08 21:05:44 +00:00
parent 4fab1156a9
commit ecdeba0de6

View File

@ -43,8 +43,11 @@ function penroot()
this.OpenWindows = new Array();
// global calendar
this.gCalendarEventDataSource = new CalendarEventDataSource( null, "/home/mikep" );
var dirServiceProvider = Components.classes["@mozilla.org/file/directory_service;1"].getService(Components.interfaces.nsIDirectoryServiceProvider);
var persistent = new Object();
var homeDir = dirServiceProvider.getFile("Home", persistent);
this.gCalendarEventDataSource = new CalendarEventDataSource( null, homeDir.unicodePath );
}
penroot.prototype.getAppNum = function (AppName)