[geary/mjog/account-command-stacks: 15/27] Minor code style and doc comment update



commit 50241db609e9311ce6a28f0c6fabc55f08315b93
Author: Michael Gratton <mike vee net>
Date:   Sun Oct 6 11:12:55 2019 +1100

    Minor code style and doc comment update

 src/client/application/application-controller.vala | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
---
diff --git a/src/client/application/application-controller.vala 
b/src/client/application/application-controller.vala
index 8d080e03..9f2b4abb 100644
--- a/src/client/application/application-controller.vala
+++ b/src/client/application/application-controller.vala
@@ -10,18 +10,14 @@
 /**
  * Primary controller for an application instance.
  *
- * @see GearyAplication
+ * A single instance of this class is constructed by {@link
+ * GearyAplication} when the primary application instance is started.
  */
 public class Application.Controller : Geary.BaseObject {
 
 
-    // Properties
-    public const string PROP_SELECTED_CONVERSATIONS ="selected-conversations";
-
-    private const int SELECT_FOLDER_TIMEOUT_USEC = 100 * 1000;
-
     private const string PROP_ATTEMPT_OPEN_ACCOUNT = "attempt-open-account";
-
+    private const int SELECT_FOLDER_TIMEOUT_USEC = 100 * 1000;
     private const uint MAX_AUTH_ATTEMPTS = 3;
 
     private static string untitled_file_name;
@@ -124,6 +120,7 @@ public class Application.Controller : Geary.BaseObject {
         }
     }
 
+    /** The primary application instance that owns this controller. */
     public weak GearyApplication application { get; private set; } // circular ref
 
     /** Account management for the application. */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]