diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-10-06 12:51:08 +0200 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-10-06 13:22:43 +0200 |
commit | f28d3d768f0e4057f727e8c3b93ba50c19f5db24 (patch) | |
tree | 288ef581590dfccbfddcad3c87d98ce3a4ed0a97 /gcr/gcr-certificate-basics-widget.c | |
parent | 626eef363c0ece57713c5be5939677784e8115cc (diff) | |
download | gnome-keyring-split.tar.gz |
Split Gcr and Gck libraries out of gnome-keyringsplit
Diffstat (limited to 'gcr/gcr-certificate-basics-widget.c')
-rw-r--r-- | gcr/gcr-certificate-basics-widget.c | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/gcr/gcr-certificate-basics-widget.c b/gcr/gcr-certificate-basics-widget.c deleted file mode 100644 index f1d45283..00000000 --- a/gcr/gcr-certificate-basics-widget.c +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (C) 2011 Collabora Ltd. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. - * - * Stef Walter <stefw@collabora.co.uk> - */ - -#include "config.h" -#include "gcr-certificate-basics-widget.h" - -#ifndef GCR_DISABLE_DEPRECATED - -/* These are all stubs for GcrCertificateWidget */ - -GType -gcr_certificate_basics_widget_get_type (void) -{ - return gcr_certificate_widget_get_type (); -} - -/** - * gcr_certificate_basics_widget_new: (skip) - * - * Deprecated: Since 2.30 - * - * Returns: (transfer full) (type Gcr.CertificateWidget): a new certificate widget - */ -GcrCertificateBasicsWidget * -gcr_certificate_basics_widget_new (GcrCertificate *cert) -{ - return gcr_certificate_widget_new (cert); -} - -/** - * gcr_certificate_basics_widget_get_certificate: (skip) - * - * Deprecated: Since 2.30 - * - * Returns: (transfer none): the certificate - */ -GcrCertificate * -gcr_certificate_basics_widget_get_certificate (GcrCertificateBasicsWidget *basics) -{ - return gcr_certificate_widget_get_certificate (basics); -} - -/** - * gcr_certificate_basics_widget_set_certificate: (skip) - * @basics: the certificate widget - * @cert: the certificate - * - * Deprecated: Since 2.30 - */ -void -gcr_certificate_basics_widget_set_certificate (GcrCertificateBasicsWidget *basics, - GcrCertificate *cert) -{ - return gcr_certificate_widget_set_certificate (basics, cert); -} - -#endif /* GCR_DISABLE_DEPRECATED */ |