Closed talzag closed 10 years ago
Thanks! I will add you to the list of contributors if you don't mind.
@ChristianKienle the project doesn't compile anymore. See https://travis-ci.org/ChristianKienle/Core-Data-Editor/builds/34102862
Wow, so sorry guys. I thought I fixed the merge issues before I merged with my master branch. I apologize, I'm just starting to get involved in contributing to open source projects. I'm not sure how I messed up my code, sorry I committed junk.
There's junk in the .pbxproj files. I'll fix those ASAP.
All of the targets are building for me now. I'll commit them & issue a pull request ASAP. Again, sorry for dicking the code up so badly :/
@talzag no worries! Keep contributing to OSS! Just be careful and always double-check what you are going to commit (git diff --cached
). Also git show
can be useful to double-check what you have commited in the last commit. And git show {COMMIT_SHA}
will show a particular commit.
Have a good day!
I changed the init methods in the view controllers for the Mac project. I was getting compiler warnings when I build the project, so I changed the initWithNibName:bundle: methods to call super, and the init method now calls [self initWithNibName:bundle:]. This fixes the compiler warnings, and the app compiles and runs without any warnings or errors.