From d3910b8d0af1ffbbeece8f0d3c2e1483cb465883 Mon Sep 17 00:00:00 2001 From: Uli Kusterer Date: Thu, 7 Aug 2003 22:20:23 +0200 Subject: [PATCH] Template editor: Removed "" text from LSTB/LSTE fields. --- NuTemplateEditor/NuTemplateLSTBElement.m | 7 +++++++ NuTemplateEditor/NuTemplateLSTEElement.m | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/NuTemplateEditor/NuTemplateLSTBElement.m b/NuTemplateEditor/NuTemplateLSTBElement.m index a15a996..87557c8 100644 --- a/NuTemplateEditor/NuTemplateLSTBElement.m +++ b/NuTemplateEditor/NuTemplateLSTBElement.m @@ -55,4 +55,11 @@ } +-(NSString*) stringValue +{ + return @""; +} + + + @end diff --git a/NuTemplateEditor/NuTemplateLSTEElement.m b/NuTemplateEditor/NuTemplateLSTEElement.m index c078890..c356d7a 100644 --- a/NuTemplateEditor/NuTemplateLSTEElement.m +++ b/NuTemplateEditor/NuTemplateLSTEElement.m @@ -48,6 +48,10 @@ } +-(NSString*) stringValue +{ + return @""; +}