From c3a31ce44a3874a3ddd84c7d2581878d7b52089a Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 26 Jan 1999 21:40:28 +0000 Subject: [PATCH] Updated WIN32 clipboard file to be in the root directory to allow for shared cut/paste. git-svn-id: file:///fltk/svn/fltk/trunk@246 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- fluid/fluid.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index 3517f1cbf..3966d1722 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -1,5 +1,5 @@ // -// "$Id: fluid.cxx,v 1.12 1999/01/26 15:58:25 mike Exp $" +// "$Id: fluid.cxx,v 1.13 1999/01/26 21:40:28 mike Exp $" // // FLUID main entry for the Fast Light Tool Kit (FLTK). // @@ -206,7 +206,7 @@ static int ipasteoffset; static char* cutfname() { #ifdef WIN32 - return ".fluid_cut_buffer"; + return "\\.fluid_cut_buffer"; #else static char name[256] = "~/.fluid_cut_buffer"; static char beenhere; @@ -407,5 +407,5 @@ int main(int argc,char **argv) { } // -// End of "$Id: fluid.cxx,v 1.12 1999/01/26 15:58:25 mike Exp $". +// End of "$Id: fluid.cxx,v 1.13 1999/01/26 21:40:28 mike Exp $". //