summaryrefslogtreecommitdiff
path: root/cocoa/history.m
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-18 08:27:00 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-18 08:27:00 +0000
commitef8098ebdf3ed16b1a1dfc6b12a03110d4e42095 (patch)
tree8bc71740bda75773d5c4ddc22e67012962efd871 /cocoa/history.m
parentdf5a5582fda50440d82d6993871f29d3350f813a (diff)
downloadnetsurf-ef8098ebdf3ed16b1a1dfc6b12a03110d4e42095.tar.gz
netsurf-ef8098ebdf3ed16b1a1dfc6b12a03110d4e42095.tar.bz2
Removing history.m - those functions aren't called anyways.
svn path=/trunk/netsurf/; revision=11368
Diffstat (limited to 'cocoa/history.m')
-rw-r--r--cocoa/history.m37
1 files changed, 0 insertions, 37 deletions
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 <sven.weidauer@gmail.com>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
-
-#import "desktop/browser.h"
-
-#import <Cocoa/Cocoa.h>
-
-#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;
-}
-
-