pidgin/pidgin

Don't error out when trying to remove a password that isn't stored.

Both wincred and secretservice return an error if you try to delete a password
that they don't know about. We don't care about this scenario and just want to
make sure the password is gone, so we changed the expected behavior to be as
such and updated wincred and secret service for the change.

I also fixed the NULL deference which is how I stumbled across the issue in the
first place.

Testing Done:
* Verfied the issue was fixed in secretservice.
* Verfied the issue didn't exist in kwallet.

Reviewed at https://reviews.imfreedom.org/r/901/
/* Pidgin is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This program is free software; you can redistribute it and/or modify
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION)
# error "only <pidgin.h> may be included directly"
#endif
#ifndef PIDGIN_MENU_TRAY_H
#define PIDGIN_MENU_TRAY_H
/**
* SECTION:pidginmenutray
* @section_id: pidgin-menu-tray
* @short_description: <filename>pidginmenutray.h</filename>
* @title: Tray Menu Item
*/
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define PIDGIN_TYPE_MENU_TRAY (pidgin_menu_tray_get_type())
G_DECLARE_FINAL_TYPE(PidginMenuTray, pidgin_menu_tray, PIDGIN, MENU_TRAY, GtkMenuItem)
/**
* PidginMenuTray:
*
* A PidginMenuTray is a #GtkMenuItem that allows you to pack icons into it
* similar to a system notification area but in a windows menu bar.
*/
/**
* pidgin_menu_tray_new:
*
* Creates a new PidginMenuTray
*
* Returns: A new PidginMenuTray
*/
GtkWidget *pidgin_menu_tray_new(void);
/**
* pidgin_menu_tray_get_box:
* @menu_tray: The PidginMenuTray
*
* Gets the box for the PidginMenuTray
*
* Returns: (transfer none): The box that this menu tray is using
*/
GtkWidget *pidgin_menu_tray_get_box(PidginMenuTray *menu_tray);
/**
* pidgin_menu_tray_append:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip for this widget
*
* Appends a widget into the tray
*/
void pidgin_menu_tray_append(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
/**
* pidgin_menu_tray_prepend:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip for this widget
*
* Prepends a widget into the tray
*/
void pidgin_menu_tray_prepend(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
/**
* pidgin_menu_tray_set_tooltip:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip to set for the widget
*
* Set the tooltip for a widget
*/
void pidgin_menu_tray_set_tooltip(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
G_END_DECLS
#endif /* PIDGIN_MENU_TRAY_H */