From 20bf88ac8226b48883f744cc702926454f142d64 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 26 Jun 2009 06:22:21 +0000 Subject: Updated cocoa to current version from bzr. --- cocoa/ScintillaTest/AppController.mm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cocoa/ScintillaTest/AppController.mm') diff --git a/cocoa/ScintillaTest/AppController.mm b/cocoa/ScintillaTest/AppController.mm index 37fe8c8e1..d660e0f75 100644 --- a/cocoa/ScintillaTest/AppController.mm +++ b/cocoa/ScintillaTest/AppController.mm @@ -8,11 +8,6 @@ */ #import "AppController.h" -#import "ScintillaView.h" - -#include "Scintilla.h" - -using namespace Scintilla; const char major_keywords[] = "accessible add all alter analyze and as asc asensitive " @@ -207,6 +202,11 @@ const char user_keywords[] = // Definition of own keywords, not used by MySQL. // Uncomment if you wanna see auto wrapping in action. //[mEditor setGeneralProperty: SCI_SETWRAPMODE parameter: SC_WRAP_WORD value: 0]; + + InfoBar* infoBar = [[[InfoBar alloc] initWithFrame: NSMakeRect(0, 0, 400, 0)] autorelease]; + [infoBar setDisplay: IBShowAll]; + [mEditor setInfoBar: infoBar top: NO]; + [mEditor setStatusText: @"Operation complete"]; } @end -- cgit v1.2.3