summaryrefslogtreecommitdiff
path: root/src/Fl_Native_File_Chooser_common.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-08 13:16:27 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-08 13:16:27 +0000
commitef831abaa73298d9648010d8aede52dc95fcaee1 (patch)
treedd595f2c3d0bd5f82ce00d027261a5321c5146d4 /src/Fl_Native_File_Chooser_common.cxx
parent8e0cceff6e15299a7116021df793d1023e7070b1 (diff)
Fixed more Windows compiler warnings:
- unused functions: dnullprint, strapp - format mismatch for newer compilers and/or 64-bit mode git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7977 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Native_File_Chooser_common.cxx')
-rw-r--r--src/Fl_Native_File_Chooser_common.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Fl_Native_File_Chooser_common.cxx b/src/Fl_Native_File_Chooser_common.cxx
index 70a3eab1c..383ecc86f 100644
--- a/src/Fl_Native_File_Chooser_common.cxx
+++ b/src/Fl_Native_File_Chooser_common.cxx
@@ -56,6 +56,7 @@ static char *strfree(char *val) {
// char *s = strnew("foo"); // s = "foo"
// s = strapp(s, "bar"); // s = "foobar"
//
+#if !defined(WIN32)
static char *strapp(char *s, const char *val) {
if ( ! val ) {
return(s); // Nothing to append? return s
@@ -69,6 +70,7 @@ static char *strapp(char *s, const char *val) {
delete [] s; // delete old string
return(news); // return new copy
}
+#endif
// APPEND A CHARACTER TO A STRING
// This does NOT allocate space for the new character.