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
path: root/extras
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2012-05-24 20:14:23 +0400
committerLluis Sanchez <lluis@xamarin.com>2012-05-24 20:14:23 +0400
commitc7daf0baebfe3027dababcb22099740dc1318742 (patch)
tree75825b3a3ab26abc7447cd4ccbebcbc0874ea9a0 /extras
parentb7655c0be38a01a44c485af58c0424b554bce6d6 (diff)
Revert "[Extras/Database] Track API changes."
This reverts commit e1fb556fab7973bbe64d9a4cbcc98d43e04190ec.
Diffstat (limited to 'extras')
-rw-r--r--extras/MonoDevelop.Database/MonoDevelop.Database.Query/SqlQueryDisplayBinding.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/MonoDevelop.Database/MonoDevelop.Database.Query/SqlQueryDisplayBinding.cs b/extras/MonoDevelop.Database/MonoDevelop.Database.Query/SqlQueryDisplayBinding.cs
index f29b106da8..a3ae7d9a01 100644
--- a/extras/MonoDevelop.Database/MonoDevelop.Database.Query/SqlQueryDisplayBinding.cs
+++ b/extras/MonoDevelop.Database/MonoDevelop.Database.Query/SqlQueryDisplayBinding.cs
@@ -41,12 +41,12 @@ namespace MonoDevelop.Database.Query
}
}
- public bool CanHandle (FilePath fileName, string mimeType, bool isBinary, Project ownerProject)
+ public bool CanHandle (FilePath fileName, string mimeType, Project ownerProject)
{
return fileName.IsNotNull && fileName.HasExtension (".sql");
}
- public IViewContent CreateContent (FilePath fileName, string mimeType, bool isBinary, Project ownerProject)
+ public IViewContent CreateContent (FilePath fileName, string mimeType, Project ownerProject)
{
return new SqlQueryView ();
}