aboutsummaryrefslogtreecommitdiff
path: root/src/user-prompt-box.vala
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-16 12:00:30 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-16 12:03:46 +0100
commit48db8cad986b0af83edb90c9fa00f58fc45b5900 (patch)
tree09a2fb352c055964928b33f13589d69325a35e56 /src/user-prompt-box.vala
parent1e59b6a99ab9fee4db33f7f77424ca8886c00716 (diff)
downloadarctica-greeter-48db8cad986b0af83edb90c9fa00f58fc45b5900.tar.gz
arctica-greeter-48db8cad986b0af83edb90c9fa00f58fc45b5900.tar.bz2
arctica-greeter-48db8cad986b0af83edb90c9fa00f58fc45b5900.zip
src/{user-list.vala,user-prompt-box.vala}: Fix segfault in newly introduced debug message.
Diffstat (limited to 'src/user-prompt-box.vala')
-rw-r--r--src/user-prompt-box.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/user-prompt-box.vala b/src/user-prompt-box.vala
index 4483eec..6254d97 100644
--- a/src/user-prompt-box.vala
+++ b/src/user-prompt-box.vala
@@ -22,13 +22,13 @@
public class UserPromptBox : PromptBox
{
/* Background for this user */
- public string background;
+ public string background = "";
/* Default session for this user */
- public string session;
+ public string session = "";
/* True if should be marked as active */
- public bool is_active;
+ public bool is_active = false;
public UserPromptBox (string name)
{