- Add notify support with edelib::DirWatch

- Fix support for large files (>2GB)
- Fix switching between iconview and listview (sometimes both checkboxes would be active)
- Import local copy of strverscmp (doesn't compile at the moment)
- EDE_Browser: fix redrawing of column title buttons
- EDE_FileIconView: switch back to ordinary FLAT_BOX (RFLAT_BOX is ugly :), fix bug with using scrollbar when view 
isn't focused, laso-selection sometimes selected too much
- Clean up some compiler warnings
This commit is contained in:
Vedran Ljubovic
2008-05-27 18:58:37 +00:00
parent acae1abb06
commit 9f8409e863
9 changed files with 288 additions and 45 deletions

View File

@@ -102,10 +102,10 @@ shortcut for strdup(tsprintf(...)) - with tasprintf you have to explicitely call
free() on created strings, with tsprintf you don't.
*/
const char* tsprintf(char* format, ...);
const char* tsprintf(const char* format, ...);
char* tasprintf(char* format, ...);
char* tasprintf(const char* format, ...);
//}