Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2007-12-17 21:39:57 +0300
committerLluis Sanchez <lluis@novell.com>2007-12-17 21:39:57 +0300
commit5270c1597a5c65f3f4370034a5cb9392b844ee2d (patch)
tree7b2134e5fc82c6a3fc5814457e3cc4ce9237878d
parentfbf981ad34deb9f6ad5a091bbf00ba27d0c0d045 (diff)
* Gui/ShellTextView.boo: Track api changes.
* BooBinding.make, BooBinding.mdp, configure: Add missing dependencies. svn path=/branches/monodevelop/extras/BooBinding/1.0/; revision=91481
-rw-r--r--extras/BooBinding/BooBinding.make4
-rw-r--r--extras/BooBinding/BooBinding.mdp7
-rw-r--r--extras/BooBinding/ChangeLog5
-rw-r--r--extras/BooBinding/Gui/ShellTextView.boo4
-rwxr-xr-xextras/BooBinding/configure2
5 files changed, 19 insertions, 3 deletions
diff --git a/extras/BooBinding/BooBinding.make b/extras/BooBinding/BooBinding.make
index 1f1426dd81..aa7bf13c42 100644
--- a/extras/BooBinding/BooBinding.make
+++ b/extras/BooBinding/BooBinding.make
@@ -91,9 +91,13 @@ EXTRAS = \
REFERENCES = \
build/BooShell.dll \
+ -pkg:boo \
+ -pkg:gconf-sharp-2.0 \
-pkg:gtk-sharp-2.0 \
+ -pkg:gtksourceview-sharp-2.0 \
-pkg:mono-addins \
-pkg:monodevelop \
+ -pkg:monodevelop-core-addins \
System.Drawing \
System.Runtime.Remoting \
System.Xml
diff --git a/extras/BooBinding/BooBinding.mdp b/extras/BooBinding/BooBinding.mdp
index 0ac7acd660..6344fe54e3 100644
--- a/extras/BooBinding/BooBinding.mdp
+++ b/extras/BooBinding/BooBinding.mdp
@@ -66,6 +66,13 @@
<ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<ProjectReference type="Gac" localcopy="True" refto="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="atk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="NRefactory, Version=0.0.0.0, Culture=neutral" />
+ <ProjectReference type="Gac" localcopy="True" refto="Mono.Cecil, Version=0.6.8.8607, Culture=neutral" />
+ <ProjectReference type="Gac" localcopy="True" refto="MonoDevelop.SourceEditor, Version=0.18.0.0, Culture=neutral" />
+ <ProjectReference type="Gac" localcopy="True" refto="gtksourceview-sharp, Version=1.0.0.2, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="Boo.Lang, Version=2.0.0.0, Culture=neutral, PublicKeyToken=32c39770e9a21a67" />
+ <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
</References>
<MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="True" RelativeMakefileName="BooBinding.make" SyncReferences="True" RelativeConfigureInPath="../../">
<BuildFilesVar Sync="True" Name="FILES" />
diff --git a/extras/BooBinding/ChangeLog b/extras/BooBinding/ChangeLog
index ce5de2819a..5804125c29 100644
--- a/extras/BooBinding/ChangeLog
+++ b/extras/BooBinding/ChangeLog
@@ -1,5 +1,10 @@
2007-12-17 Lluis Sanchez Gual <lluis@novell.com>
+ * Gui/ShellTextView.boo: Track api changes.
+ * BooBinding.make, BooBinding.mdp, configure: Add missing dependencies.
+
+2007-12-17 Lluis Sanchez Gual <lluis@novell.com>
+
* configure: Updated add-in versions.
2007-12-13 Lluis Sanchez Gual <lluis@novell.com>
diff --git a/extras/BooBinding/Gui/ShellTextView.boo b/extras/BooBinding/Gui/ShellTextView.boo
index ac2cfd4761..5203eca757 100644
--- a/extras/BooBinding/Gui/ShellTextView.boo
+++ b/extras/BooBinding/Gui/ShellTextView.boo
@@ -239,7 +239,7 @@ class ShellTextView (SourceView, ICompletionWidget):
_reset.Show()
override def OnKeyPressEvent (ev as Gdk.EventKey):
- if CompletionListWindow.ProcessKeyEvent (ev.Key, ev.State):
+ if CompletionWindowManager.ProcessKeyEvent (ev.Key, ev.State):
return true
// Short circuit to avoid getting moved back to the input line
@@ -348,7 +348,7 @@ class ShellTextView (SourceView, ICompletionWidget):
return super (ev)
protected override def OnFocusOutEvent (e as EventFocus):
- CompletionListWindow.HideWindow ()
+ CompletionWindowManager.HideWindow ()
return super.OnFocusOutEvent(e)
#endregion
diff --git a/extras/BooBinding/configure b/extras/BooBinding/configure
index 8c5a115611..3ed8f97abf 100755
--- a/extras/BooBinding/configure
+++ b/extras/BooBinding/configure
@@ -4,7 +4,7 @@ PACKAGE=monodevelop-boo
prefix=/usr/local
config=DEBUG
configurations=" RELEASE DEBUG"
-required_packages=" gtk-sharp-2.0;2.8.3 monodevelop;0.18 mono-addins;0.3 glib-sharp-2.0;2.8.3"
+required_packages="gtk-sharp-2.0;2.8.3 monodevelop;0.18 mono-addins;0.3 glib-sharp-2.0;2.8.3 monodevelop-core-addins;0.18 boo;0.7.9.2659 gconf-sharp-2.0;2.8.3 gtksourceview-sharp-2.0;0.11"
usage ()
{