"Donate" item removed. Closes #4645

This commit is contained in:
Eric Gregory 2012-01-25 14:48:54 -08:00
parent e5e7d64aff
commit 699d14d554
2 changed files with 0 additions and 10 deletions

View file

@ -60,7 +60,6 @@ public class GearyController {
}
// Named actions.
public const string ACTION_DONATE = "GearyDonate";
public const string ACTION_ABOUT = "GearyAbout";
public const string ACTION_QUIT = "GearyQuit";
public const string ACTION_NEW_MESSAGE = "GearyNewMessage";
@ -127,10 +126,6 @@ public class GearyController {
prefs.label = _("_Preferences");
entries += prefs;
Gtk.ActionEntry donate = { ACTION_DONATE, null, TRANSLATABLE, null, null, on_donate };
donate.label = _("_Donate");
entries += donate;
Gtk.ActionEntry about = { ACTION_ABOUT, Gtk.Stock.ABOUT, TRANSLATABLE, null, null, on_about };
about.label = _("_About");
entries += about;
@ -609,10 +604,6 @@ public class GearyController {
}
}
public void on_donate() {
open_uri("http://yorba.org/donate/");
}
private void create_compose_window(Geary.ComposedEmail? prefill = null) {
ComposerWindow w = new ComposerWindow(prefill);
w.set_position(Gtk.WindowPosition.CENTER);

View file

@ -3,7 +3,6 @@
<menuitem name="Preferences" action="GearyPreferences" />
<separator />
<menuitem name="About" action="GearyAbout" />
<menuitem name="Donate" action="GearyDonate" />
<separator />
<menuitem name="Quit" action="GearyQuit" />
</popup>