From ef8098ebdf3ed16b1a1dfc6b12a03110d4e42095 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Tue, 18 Jan 2011 08:27:00 +0000 Subject: [PATCH] Removing history.m - those functions aren't called anyways. svn path=/trunk/netsurf/; revision=11368 --- cocoa/NetSurf.xcodeproj/project.pbxproj | 4 --- cocoa/history.m | 37 ------------------------- 2 files changed, 41 deletions(-) delete mode 100644 cocoa/history.m diff --git a/cocoa/NetSurf.xcodeproj/project.pbxproj b/cocoa/NetSurf.xcodeproj/project.pbxproj index 7d9cd5e51..3985c2a4f 100644 --- a/cocoa/NetSurf.xcodeproj/project.pbxproj +++ b/cocoa/NetSurf.xcodeproj/project.pbxproj @@ -90,7 +90,6 @@ 2622F1D712DCD84600CD5A62 /* TreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2622F1D612DCD84600CD5A62 /* TreeView.m */; }; 265F311A12D663F50048B600 /* gui.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F311912D663F50048B600 /* gui.m */; }; 265F314812D666660048B600 /* plotter.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F314712D666660048B600 /* plotter.m */; }; - 265F315212D667060048B600 /* history.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F315112D667060048B600 /* history.m */; }; 265F316212D667E10048B600 /* schedule.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F316112D667E10048B600 /* schedule.m */; }; 265F316712D668130048B600 /* thumbnail.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F316612D668130048B600 /* thumbnail.m */; }; 265F317012D668790048B600 /* fetch.m in Sources */ = {isa = PBXBuildFile; fileRef = 265F316F12D668790048B600 /* fetch.m */; }; @@ -298,7 +297,6 @@ 265F30AB12D6637E0048B600 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = ""; }; 265F311912D663F50048B600 /* gui.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = gui.m; sourceTree = ""; }; 265F314712D666660048B600 /* plotter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = plotter.m; sourceTree = ""; }; - 265F315112D667060048B600 /* history.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = history.m; sourceTree = ""; }; 265F316112D667E10048B600 /* schedule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = schedule.m; sourceTree = ""; }; 265F316612D668130048B600 /* thumbnail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = thumbnail.m; sourceTree = ""; }; 265F316F12D668790048B600 /* fetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = fetch.m; sourceTree = ""; }; @@ -593,7 +591,6 @@ 265F311912D663F50048B600 /* gui.m */, 261223CB12D7805300E10F91 /* plotter.h */, 265F314712D666660048B600 /* plotter.m */, - 265F315112D667060048B600 /* history.m */, 265F316112D667E10048B600 /* schedule.m */, 265F316612D668130048B600 /* thumbnail.m */, 265F316F12D668790048B600 /* fetch.m */, @@ -843,7 +840,6 @@ 260F205A12D620E800D9B07F /* utils.c in Sources */, 265F311A12D663F50048B600 /* gui.m in Sources */, 265F314812D666660048B600 /* plotter.m in Sources */, - 265F315212D667060048B600 /* history.m in Sources */, 265F316212D667E10048B600 /* schedule.m in Sources */, 265F316712D668130048B600 /* thumbnail.m in Sources */, 265F317012D668790048B600 /* fetch.m in Sources */, diff --git a/cocoa/history.m b/cocoa/history.m deleted file mode 100644 index 63b53a13c..000000000 --- a/cocoa/history.m +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2011 Sven Weidauer - * - * This file is part of NetSurf, http://www.netsurf-browser.org/ - * - * NetSurf 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; version 2 of the License. - * - * NetSurf 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. If not, see . - */ - -#import "desktop/browser.h" - -#import - -#define UNIMPL() NSLog( @"Function '%s' unimplemented", __func__ ) - - -void global_history_add_recent(const char *url) -{ - UNIMPL(); -} - -char **global_history_get_recent(int *count) -{ - UNIMPL(); - return NULL; -} - -