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

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Laval <jeremie.laval@gmail.com>2012-03-09 18:00:34 +0400
committerJeremie Laval <jeremie.laval@gmail.com>2012-03-09 18:14:49 +0400
commit685347141a7cf7e8187005b1429ce2eb035fc098 (patch)
treeec166431ddc04fd6f5cb63f7a9389f5cc8db36e6 /MyDocument.cs
parent364a445d3b3e86b20dc12dd65748b62225925a8e (diff)
[macdoc] Remove the use of hardcoded image and use existing template instead
Diffstat (limited to 'MyDocument.cs')
-rw-r--r--MyDocument.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/MyDocument.cs b/MyDocument.cs
index db32d51..9e183df 100644
--- a/MyDocument.cs
+++ b/MyDocument.cs
@@ -41,12 +41,6 @@ namespace macdoc
public MyDocument (NSCoder coder) : base(coder)
{
}
-
- void LoadImages ()
- {
- navigationCells.SetImage (new NSImage (Path.Combine (resourcesPath, "Images", "back.png")), 0);
- navigationCells.SetImage (new NSImage (Path.Combine (resourcesPath, "Images", "forward.png")), 1);
- }
public override string DisplayName {
get {
@@ -77,7 +71,6 @@ namespace macdoc
{
base.WindowControllerDidLoadNib (windowController);
tabSelector.SelectFirst (this);
- LoadImages ();
history = new History (navigationCells);
SetupOutline ();
SetupSearch ();