Modified:
trunk/src/ChangeLog
trunk/src/NoteWindow.cs
trunk/src/Stubs/GConf.cs
Log:
2008-05-20 Everaldo Canuto <everald...@gmail.com>
* Stubs/GConf.cs: Fix tomboy xml path.
* NoteWindow.cs: Add icon to window.
Modified: trunk/src/ChangeLog
==============================================================================
--- trunk/src/ChangeLog (original)
+++ trunk/src/ChangeLog Tue May 20 10:41:18 2008
@@ -1,3 +1,9 @@
+2008-05-20 Everaldo Canuto <everald...@gmail.com>
+
+ * Stubs/GConf.cs: Fix tomboy xml path.
+
+ * NoteWindow.cs: Add icon to window.
+
2008-05-19 Everaldo Canuto <everald...@gmail.com>
* TomboyDataProvider: Deleted, we have now a new branch for providers.
Modified: trunk/src/NoteWindow.cs
==============================================================================
--- trunk/src/NoteWindow.cs (original)
+++ trunk/src/NoteWindow.cs Tue May 20 10:41:18 2008
@@ -53,7 +53,8 @@
{
showedNote=new ArrayList();
- this.Note = note;
+ this.Note = note;
+ this.IconName = "ddtomboy";
this.InitializeComponents ();
this.ShowAll ();
}
Modified: trunk/src/Stubs/GConf.cs
==============================================================================
--- trunk/src/Stubs/GConf.cs (original)
+++ trunk/src/Stubs/GConf.cs Tue May 20 10:41:18 2008
@@ -19,7 +19,9 @@
private ClientDriver()
{
try {
- fileName = "tomboy.xml";
+ string tomboy_dir = System.IO.Path.Combine
(System.Environment.GetEnvironmentVariable ("HOME"), ".tomboy");
+
+ fileName = System.IO.Path.Combine (tomboy_dir, "tomboy.xml");
document.Load(fileName);
}
catch {