Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
Fix some minor build issues with latest TouchDB.
Browse files Browse the repository at this point in the history
  • Loading branch information
snej committed Jul 30, 2013
1 parent a004d59 commit 4b4751b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions TouchDB Viewer.xcodeproj/project.pbxproj
Expand Up @@ -359,7 +359,7 @@
27A8A791152A008200363704 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Developer ID Application: CouchOne";
CODE_SIGN_IDENTITY = "";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -378,7 +378,7 @@
27A8A792152A008200363704 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Developer ID Application: CouchOne";
CODE_SIGN_IDENTITY = "";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
4 changes: 2 additions & 2 deletions TouchDB Viewer/DBDocument.m
Expand Up @@ -8,7 +8,7 @@

#import "DBDocument.h"
#import "DBWindowController.h"
#import <TouchDB/TDDatabaseManager.h>
#import <TouchDB/TD_DatabaseManager.h>


@implementation DBDocument
Expand Down Expand Up @@ -37,7 +37,7 @@ - (BOOL)readFromURL:(NSURL *)absoluteURL
}

NSString* serverPath = dbPath.stringByDeletingLastPathComponent;
TDDatabaseManagerOptions options = {.readOnly = false, .noReplicator = true};
TD_DatabaseManagerOptions options = {.readOnly = false, .noReplicator = true};
CouchTouchDBServer* server = [[CouchTouchDBServer alloc] initWithServerPath: serverPath
options: &options];
if (server.error) {
Expand Down

0 comments on commit 4b4751b

Please sign in to comment.