adium 4676:386cc688212b: Removed few lost // $Id$.

commits at adium.im commits at adium.im
Thu Feb 9 10:56:34 UTC 2012


details:	http://hg.adium.im/adium/rev/386cc688212b
revision:	4676:386cc688212b
branch:		(none)
author:		Adrian Godoroja <robotive at me.com>
date:		Thu Feb 09 12:56:27 2012 +0200

Removed few lost // $Id$.

diffs (147 lines):

diff -r 01a79023a03b -r 386cc688212b Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m
--- a/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m	Thu Feb 09 12:56:27 2012 +0200
@@ -16,42 +16,40 @@
 
 #import "AIColoredBoxView.h"
 
-/*
-    A colored box
-    $Id$
-*/
+// A colored box
 
 @implementation AIColoredBoxView
 
-- (void)dealloc
-{
-    self.color = nil;
-
-    [super dealloc];
-}
+ at synthesize color;
 
 - (BOOL)isOpaque
 {
     return NO;
 }
 
- at synthesize color;
-
 - (void)drawRect:(NSRect)rect
 {    
-    //Clear the rect
+    // Clear the rect
     [[NSColor clearColor] set];
     NSRectFill(rect);
 
-    //Fill it with our color
+    // Fill it with our color
     if (!color) {
         self.color = [NSColor whiteColor];
     }
+	
     [color set];
     NSRectFill(rect);
     
-    //Draw our contents
+    // Draw our contents
     [super drawRect:rect];
 }
 
+- (void)dealloc
+{
+    self.color = nil;
+	
+    [super dealloc];
+}
+
 @end
diff -r 01a79023a03b -r 386cc688212b Source/AIAccountController.m
--- a/Source/AIAccountController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIAccountController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIAccountController.h"
 
diff -r 01a79023a03b -r 386cc688212b Source/AIContentController.m
--- a/Source/AIContentController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIContentController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIContentController.h"
 
diff -r 01a79023a03b -r 386cc688212b Source/AIDockController.m
--- a/Source/AIDockController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIDockController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIDockController.h"
 #import <Adium/AIInterfaceControllerProtocol.h>
diff -r 01a79023a03b -r 386cc688212b Source/AIInterfaceController.m
--- a/Source/AIInterfaceController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIInterfaceController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIInterfaceController.h"
 
diff -r 01a79023a03b -r 386cc688212b Source/AILoginController.m
--- a/Source/AILoginController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AILoginController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AILoginController.h"
 #import "AILoginWindowController.h"
diff -r 01a79023a03b -r 386cc688212b Source/AILoginWindowController.m
--- a/Source/AILoginWindowController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AILoginWindowController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AILoginWindowController.h"
 #import <Adium/AILoginControllerProtocol.h>
diff -r 01a79023a03b -r 386cc688212b Source/AIMenuController.m
--- a/Source/AIMenuController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIMenuController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIMenuController.h"
 #import <Adium/AIAccount.h>
diff -r 01a79023a03b -r 386cc688212b Source/AIPasswordPromptController.m
--- a/Source/AIPasswordPromptController.m	Wed Feb 08 14:13:00 2012 -0500
+++ b/Source/AIPasswordPromptController.m	Thu Feb 09 12:56:27 2012 +0200
@@ -14,7 +14,6 @@
  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-// $Id$
 
 #import "AIPasswordPromptController.h"
 #import <objc/objc-runtime.h>




More information about the commits mailing list