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:
authorMichael Hutchinson <mhutchinson@novell.com>2011-02-23 05:01:52 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2011-02-23 05:02:03 +0300
commit5bd917171443a075d243d636edc4516c1e260c00 (patch)
treed31cc434e1c91e771a63d685c2cc097f9ba2dcc7 /extras/BooBinding
parent92a7e315328306fa78bdf15aac3d5432f53ec940 (diff)
[Boo] Track API
Diffstat (limited to 'extras/BooBinding')
-rw-r--r--extras/BooBinding/Gui/ShellTextView.boo4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/BooBinding/Gui/ShellTextView.boo b/extras/BooBinding/Gui/ShellTextView.boo
index 9d9fe84f6e..53ceab8ff5 100644
--- a/extras/BooBinding/Gui/ShellTextView.boo
+++ b/extras/BooBinding/Gui/ShellTextView.boo
@@ -76,10 +76,10 @@ class ShellTextView (TextView, ICompletionWidget):
self.ModifyFont(Model.Properties.Font)
# FIXME: Put the project file somewhere other than /tmp
- shellProjectFile = System.IO.Path.Combine (MonoDevelop.Core.PropertyService.ConfigPath, "${Model.LanguageName}-shell-project.mdp")
+ shellProjectFile = System.IO.Path.Combine (MonoDevelop.Core.PropertyService.Locations.Cache, "${Model.LanguageName}-shell-project.mdp")
// 'touch' the file so the MD parsing foo sees it as existing.
- _fakeFileName = System.IO.Path.Combine (MonoDevelop.Core.PropertyService.ConfigPath, "shell-dummy-file.${Model.MimeTypeExtension}")
+ _fakeFileName = System.IO.Path.Combine (MonoDevelop.Core.PropertyService.Locations.Cache, "shell-dummy-file.${Model.MimeTypeExtension}")
if not System.IO.File.Exists (_fakeFileName):
_fileInfo = System.IO.File.Create (_fakeFileName)
_fileInfo.Close ()