mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
- 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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user