- 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

@@ -295,7 +295,7 @@ char* strstrmulti(const char *haystack, const char *needles, const char *separat
// Print to a static char[] and return pointer
const char* tsprintf(char *format, ...)
const char* tsprintf(const char *format, ...)
{
static char buffer[4096];
va_list args;
@@ -305,7 +305,7 @@ const char* tsprintf(char *format, ...)
return (const char*)buffer;
}
char* tasprintf(char *format, ...)
char* tasprintf(const char *format, ...)
{
char buffer[4096];
va_list args;