Bug fix: Wrong usage of dot notation.

This commit is contained in:
André Berg
2009-11-03 04:37:03 +01:00
parent b76f7551ac
commit 421d6fd9ed
+1 -1
View File
@@ -23,7 +23,7 @@
- (id) initWithRef: (PBGitRef*) ref
{
parameters = [NSArray arrayWithObject: ref.ref];
description = ref.shortName;
description = [ref shortName];
return self;
}