summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-01-26 21:40:28 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-01-26 21:40:28 +0000
commitc3a31ce44a3874a3ddd84c7d2581878d7b52089a (patch)
tree19bd6d84d794e7db85a495e722a1203f793301b3
parent53d39cc6c0b1f4d2e3269fb505551d13b2653f2f (diff)
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
-rw-r--r--fluid/fluid.cxx6
1 files 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 $".
//