diff options
author | Debarshi Ray <[email protected]> | 2016-04-07 09:27:06 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-08-24 08:36:14 +0200 |
commit | e3cb374d82809e26582d5b60374baef4474d5773 (patch) | |
tree | 70791bbb8d207ffcd9889544d31a8c4659008db0 /src/eom-image.c | |
parent | f4d798ab5f6ba743b115e27c3f28c27181b7450f (diff) | |
download | eom-e3cb374d82809e26582d5b60374baef4474d5773.tar.bz2 eom-e3cb374d82809e26582d5b60374baef4474d5773.tar.xz |
EomImage: Remove unused constructor
https://bugzilla.gnome.org/show_bug.cgi?id=764139
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/14401d33
Diffstat (limited to 'src/eom-image.c')
-rw-r--r-- | src/eom-image.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/eom-image.c b/src/eom-image.c index 5db3699..85d4f9a 100644 --- a/src/eom-image.c +++ b/src/eom-image.c @@ -315,18 +315,6 @@ eom_image_init (EomImage *img) } EomImage * -eom_image_new (const char *txt_uri) -{ - EomImage *img; - - img = EOM_IMAGE (g_object_new (EOM_TYPE_IMAGE, NULL)); - - img->priv->file = g_file_new_for_uri (txt_uri); - - return img; -} - -EomImage * eom_image_new_file (GFile *file) { EomImage *img; |