Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VENOM-499: Fix failing builds #500

Merged
merged 1 commit into from
Apr 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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