Skip to content

Commit

Permalink
VENOM-499: Fix failing builds
Browse files Browse the repository at this point in the history
* Fixes #499
  • Loading branch information
naxuroqa committed Apr 22, 2020
1 parent 5fbef8a commit e9eb190
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/R.vala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

namespace Venom {
public sealed class R {
public class R {
private R() {}

private static IconResource _icons;
Expand Down Expand Up @@ -54,7 +54,7 @@ namespace Venom {
}
}

public sealed class IconResource {
public class IconResource {
public string app { get { return "venom-symbolic"; } }

public string idle { get { return "idle-symbolic"; } }
Expand All @@ -66,12 +66,12 @@ namespace Venom {
public string default_groupchat { get { return "conference-symbolic"; } }
}

public sealed class StringResource {
public class StringResource {
public string default_username() { return _("Tox User"); }
public string default_statusmessage() { return ""; }
}

public sealed class ConstantsResource {
public class ConstantsResource {
public string downloads_dir { get; set; default = GLib.Environment.get_user_special_dir(GLib.UserDirectory.DOWNLOAD); }
public string default_profile_dir() { return GLib.Path.build_filename(GLib.Environment.get_user_data_dir(), "tox"); }
public string default_global_dir() { return GLib.Path.build_filename(GLib.Environment.get_user_config_dir(), "tox"); }
Expand Down

0 comments on commit e9eb190

Please sign in to comment.