From c65510eff37e300457011d4995d75ab7c70bc5a7 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Tue, 28 Oct 1997 12:56:39 +0000 Subject: [PATCH] Moved PasteboardServer.h to the Tools directory and added a log message where we can't contact the pasteboard server. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2568 72102866-910b-0410-8b05-ffd578937521 --- Source/NSPasteboard.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/NSPasteboard.m b/Source/NSPasteboard.m index 3c553c3fc..cbf1ffda4 100644 --- a/Source/NSPasteboard.m +++ b/Source/NSPasteboard.m @@ -29,7 +29,7 @@ #include #include -#include +#include "../Tools/PasteboardServer.h" #include #include #include @@ -103,6 +103,10 @@ static id the_server = nil; name: NSConnectionDidDieNotification object: conn]; } + else { + NSLog(@"Unable to contact pasteboard server - " + @"please ensure that gpbs is running.\n"); + } } return the_server; }