From 5639b6777e449cd713fb71765c7489c76dd919ea Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 24 Nov 2011 07:48:16 +0000 Subject: [PATCH] Dropped files no longer used. Monotone-Parent: 91104e04b3ba763294cc8bad97370133142eee86 Monotone-Revision: 63df8bd030698477828cd7b3769314edbeb8bc62 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-11-24T07:48:16 --- UI/Common/UIxJSClose.h | 41 ------------------------ UI/Common/UIxJSClose.m | 71 ------------------------------------------ 2 files changed, 112 deletions(-) delete mode 100644 UI/Common/UIxJSClose.h delete mode 100644 UI/Common/UIxJSClose.m diff --git a/UI/Common/UIxJSClose.h b/UI/Common/UIxJSClose.h deleted file mode 100644 index 5a0820f78..000000000 --- a/UI/Common/UIxJSClose.h +++ /dev/null @@ -1,41 +0,0 @@ -/* UIxJSClose.h - this file is part of SOGo - * - * Copyright (C) 2006 Inverse inc. - * - * Author: Wolfgang Sourdeau - * - * This file is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This file is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef UIXJSCLOSE_H -#define UIXJSCLOSE_H - -#import - -@class NSString; - -@interface UIxJSClose : UIxComponent -{ - NSString *refreshMethod; -} - -- (void) setRefreshMethod: (NSString *) method; -- (NSString *) refreshMethod; -- (BOOL) hasRefreshMethod; - -@end - -#endif /* UIXJSCLOSE_H */ diff --git a/UI/Common/UIxJSClose.m b/UI/Common/UIxJSClose.m deleted file mode 100644 index 6a4c5b780..000000000 --- a/UI/Common/UIxJSClose.m +++ /dev/null @@ -1,71 +0,0 @@ -/* UIxJSClose.m - this file is part of SOGo - * - * Copyright (C) 2006 Inverse inc. - * - * Author: Wolfgang Sourdeau - * - * This file is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This file is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#import - -#import "UIxJSClose.h" - -@implementation UIxJSClose - -- (id) init -{ - if ((self = [super init])) - refreshMethod = nil; - - return self; -} - -- (void) dealloc -{ - if (refreshMethod) - [refreshMethod release]; - [super dealloc]; -} - -- (NSString *) doctype -{ - return (@"\n" - @""); -} - -- (void) setRefreshMethod: (NSString *) method -{ - if (refreshMethod) - [refreshMethod release]; - refreshMethod = method; - if (refreshMethod) - [refreshMethod retain]; -} - -- (NSString *) refreshMethod -{ - return refreshMethod; -} - -- (BOOL) hasRefreshMethod -{ - return (refreshMethod != nil); -} - -@end