MacOS: move some code from file Fl_cocoa.mm to file Fl_Darwin_System_Driver.cxx - continued

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12919 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2018-05-12 17:03:26 +00:00
parent aba87e8bb0
commit 10640df785
1 changed files with 0 additions and 21 deletions

View File

@ -3019,27 +3019,6 @@ void Fl_Cocoa_Window_Driver::wait_for_expose()
} }
} }
/*
* returns pointer to the filename, or null if name ends with ':'
*/
/*const char *Fl_Darwin_System_Driver::filename_name( const char *name )
{
const char *p, *q;
if (!name) return (0);
for ( p = q = name ; *p ; ) {
if ( ( p[0] == ':' ) && ( p[1] == ':' ) ) {
q = p+2;
p++;
}
else if (p[0] == '/') {
q = p + 1;
}
p++;
}
return q;
}*/
/* /*
* set the window title bar name * set the window title bar name
*/ */