diff -r System/Applications/Preferences/Modules/Colors/Colors+TableView.m System-guenther/Applications/Preferences/Modules/Colors/Colors+TableView.m
9c9
< - (int) numberOfRowsInTableView: (id) tableView
---
> - (int) numberOfRowsInTableView: (NSTableView*) tableView
diff -r System/Applications/Preferences/PrefsController.m System-guenther/Applications/Preferences/PrefsController.m
177c177
< - (id) window;
---
> - (NSWindow *) window;
diff -r System/Applications/Terminal/TerminalParser_LinuxPrefs.h System-guenther/Applications/Terminal/TerminalParser_LinuxPrefs.h
16c16,17
< @class GSVbox,NSPopUpButton;
---
> @class GSVbox;
> @class NSPopUpButton;
diff -r System/Applications/Terminal/TerminalParser_LinuxPrefs.m System-guenther/Applications/Terminal/TerminalParser_LinuxPrefs.m
24,27c24,27
< static NSString
< 	*TerminalParser_LinuxPrefsDidChangeNotification=
< 		@"TerminalParser_LinuxPrefsDidChangeNotification",
< 	*CharacterSetKey=@"Linux_CharacterSet";
---
> NSString *TerminalParser_LinuxPrefsDidChangeNotification=
> 		@"TerminalParser_LinuxPrefsDidChangeNotification";
> 	
> static NSString *CharacterSetKey=@"Linux_CharacterSet";
diff -r System/Frameworks/PrefsModule/PrefsModule.h System-guenther/Frameworks/PrefsModule/PrefsModule.h
43a44,47
> // Forward declaration of PrefsModule protocol needed 
> @protocol PrefsModule;
> 
> 
71c75
< - (id) currentModule;
---
> - (id <PrefsModule>) currentModule;
84c88
< - (BOOL) setCurrentModule: (id) aPrefsModule;
---
> - (BOOL) setCurrentModule: (id <PrefsModule>) aPrefsModule;
111c115
< - (id) prefsController;
---
> - (id <PrefsController>) prefsController;
