screenshot: Remove harmful empty finalizer
We really should be chaining up in the finalizer, but instead of leaving an empty finalize, remove it entirely. https://bugzilla.gnome.org/show_bug.cgi?id=672775
This commit is contained in:
parent
bf992989c7
commit
07e10fa03e
@ -41,18 +41,10 @@ typedef struct _screenshot_data {
|
|||||||
|
|
||||||
G_DEFINE_TYPE(ShellScreenshot, shell_screenshot, G_TYPE_OBJECT);
|
G_DEFINE_TYPE(ShellScreenshot, shell_screenshot, G_TYPE_OBJECT);
|
||||||
|
|
||||||
static void
|
|
||||||
shell_screenshot_finalize (GObject *gobject)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
shell_screenshot_class_init (ShellScreenshotClass *screenshot_class)
|
shell_screenshot_class_init (ShellScreenshotClass *screenshot_class)
|
||||||
{
|
{
|
||||||
GObjectClass *gobject_class = G_OBJECT_CLASS (screenshot_class);
|
(void) screenshot_class;
|
||||||
|
|
||||||
gobject_class->finalize = shell_screenshot_finalize;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user