aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2014-12-05 00:01:44 +0100
committerMax <post@wickenrode.com>2014-12-05 00:01:44 +0100
commitfd3ff51dc624be5ce645ce25eb72d03e5a359416 (patch)
tree0cea378839f326c1824c81d66068fcf07840f5ec /Source
parent328b63748a0f0b6cb67aee37efffce86aaf16aa8 (diff)
downloadsequelpro-fd3ff51dc624be5ce645ce25eb72d03e5a359416.tar.gz
sequelpro-fd3ff51dc624be5ce645ce25eb72d03e5a359416.tar.bz2
sequelpro-fd3ff51dc624be5ce645ce25eb72d03e5a359416.zip
Add stub for SPTableContentFilterController
And with that we are back to a build that should not spam your Console upon launch. (Sorry for the future merge conflict) :)
Diffstat (limited to 'Source')
-rw-r--r--Source/SPTableContentFilterController.h10
-rw-r--r--Source/SPTableContentFilterController.m5
2 files changed, 15 insertions, 0 deletions
diff --git a/Source/SPTableContentFilterController.h b/Source/SPTableContentFilterController.h
new file mode 100644
index 00000000..15880416
--- /dev/null
+++ b/Source/SPTableContentFilterController.h
@@ -0,0 +1,10 @@
+// This class is a dummy.
+// It is only present because DBView.xib already references it, but the
+// code itself is still in another branch. This stub is used to avoid a warning
+// from the Nib loader, saying 'this class was not found and replaced with a NSObject'.
+
+#import <Foundation/Foundation.h>
+
+@interface SPTableContentFilterController : NSObject
+
+@end
diff --git a/Source/SPTableContentFilterController.m b/Source/SPTableContentFilterController.m
new file mode 100644
index 00000000..39c0f722
--- /dev/null
+++ b/Source/SPTableContentFilterController.m
@@ -0,0 +1,5 @@
+#import "SPTableContentFilterController.h"
+
+@implementation SPTableContentFilterController
+
+@end