Ok let's see:

* DND now should work reasonable (still not finished DND on icons)
* Added menus (icon specific, desktop)
* Icon renaming works too
* Some code to change icons fonts (unfinished)
* Desktop main instance will be now first created and then call rest of
  init data. This will allow init data to re-use desktop instance and peek
  it's own data (area() for example). Previously, calling such functions would
  crash app since constructor didn't finished with creation of desktop instance.
This commit is contained in:
Sanel Zukan
2007-07-02 10:28:18 +00:00
parent 4521b56042
commit adc3a8efcd
6 changed files with 339 additions and 94 deletions

View File

@ -354,5 +354,5 @@ char* get_basename(const char* path) {
if(p)
return (p + 1);
return (char*) path;
return (char*)path;
}