From b87a3025fcf4d070c8a11951f8b71c8042b70099 Mon Sep 17 00:00:00 2001 From: pinkerton Date: Tue, 23 Sep 2008 16:20:02 +0000 Subject: [PATCH] space comments correctly on code example --- objcguide.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/objcguide.xml b/objcguide.xml index 9599ca2..6e15bcc 100644 --- a/objcguide.xml +++ b/objcguide.xml @@ -746,15 +746,15 @@ @interface MyDelegate : NSObject { @private - IBOutlet* okButton_; // normal NSControl - IBOutlet* myContextMenu_; // manually-loaded menu (strong) + IBOutlet NSButton* okButton_; // normal NSControl + IBOutlet NSMenu* myContextMenu_; // manually-loaded menu (strong) - AnObjcObject* doohickey_; // my doohickey + AnObjcObject* doohickey_; // my doohickey MyController* controller_; // so we can send msgs back (weak, owns me) // non-NSObject pointers... - CWackyCPPClass* wacky_; // some cross-platform object (strong) - CFDictionaryRef* dict_; // (strong) + CWackyCPPClass* wacky_; // some cross-platform object (strong) + CFDictionaryRef* dict_; // (strong) } @end