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

Commit

Permalink
fixed a small memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
John Ellis committed Oct 26, 2010
1 parent 9d911c5 commit 897cf61
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
Expand Up @@ -468,7 +468,14 @@
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "TTStyleCatalog" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectReferences = (
Expand Down Expand Up @@ -686,7 +693,7 @@
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
INFOPLIST_FILE = "TTStyleCatalog-Info.plist";
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Debug;
};
Expand All @@ -696,7 +703,7 @@
buildSettings = {
COPY_PHASE_STRIP = YES;
INFOPLIST_FILE = "TTStyleCatalog-Info.plist";
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Release;
};
Expand All @@ -710,7 +717,7 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Debug;
};
Expand All @@ -724,7 +731,7 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Release;
};
Expand Down
Expand Up @@ -426,6 +426,7 @@
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "TTNavigatorDemo" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Expand Down Expand Up @@ -674,7 +675,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Debug;
};
Expand All @@ -689,7 +690,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
"PROVISIONING_PROFILE[sdk=iphoneos*]" = DefaultProfileUuid;
SDKROOT = iphoneos4.0;
SDKROOT = iphoneos4.1;
};
name = Release;
};
Expand Down
7 changes: 7 additions & 0 deletions src/Three20Core/Three20Core.xcodeproj/project.pbxproj
Expand Up @@ -346,7 +346,14 @@
};
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Three20Core" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectRoot = "";
Expand Down
7 changes: 7 additions & 0 deletions src/Three20Network/Three20Network.xcodeproj/project.pbxproj
Expand Up @@ -403,7 +403,14 @@
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Three20Network" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectReferences = (
Expand Down
2 changes: 2 additions & 0 deletions src/Three20UI/Sources/TTTableHeaderDragRefreshView.m
Expand Up @@ -102,6 +102,8 @@ - (void)dealloc {
TT_RELEASE_SAFELY(_statusLabel);
TT_RELEASE_SAFELY(_arrowImage);
TT_RELEASE_SAFELY(_lastUpdatedLabel);
TT_RELEASE_SAFELY(_lastUpdatedDate);

[super dealloc];
}

Expand Down

0 comments on commit 897cf61

Please sign in to comment.