Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
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) :)
- Loading branch information
Showing
with
21 additions
and 0 deletions.
@@ -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 |
@@ -0,0 +1,5 @@ | ||
#import "SPTableContentFilterController.h" | ||
|
||
@implementation SPTableContentFilterController | ||
|
||
@end |