Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2022-11-11 16:04:51 +0300
committerAntenore Gatta <antenore@simbiosi.org>2022-11-11 16:04:51 +0300
commitdd63c22a4aeb302e604368677903ae2b6ac67715 (patch)
tree6e7a69e0fb6df4bb494e971609df0e75108e49ab /src/rmnews.h
parent87fa700ca921853e52da01afb0590d3aa956293e (diff)
Removing the News Widget
Diffstat (limited to 'src/rmnews.h')
-rw-r--r--src/rmnews.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/rmnews.h b/src/rmnews.h
deleted file mode 100644
index 734ffe1d0..000000000
--- a/src/rmnews.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Remmina - The GTK+ Remote Desktop Client
- * Copyright (C) 2016-2022 Antenore Gatta, Giovanni Panozzo
- *
- * This program is free software; you can redistribute it and/or modify
- * it 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 02110-1301, USA.
- *
- * In addition, as a special exception, the copyright holders give
- * permission to link the code of portions of this program with the
- * OpenSSL library under certain conditions as described in each
- * individual source file, and distribute linked combinations
- * including the two.
- * You must obey the GNU General Public License in all respects
- * for all of the code used other than OpenSSL. * If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. * If you
- * do not wish to do so, delete this exception statement from your
- * version. * If you delete this exception statement from all source
- * files in the program, then also delete it here.
- *
- */
-
-typedef struct _RemminaNewsDialog {
- GtkBuilder * builder;
- GtkDialog * dialog;
-
- GtkTextView * rmnews_text_view;
- GtkLabel * rmnews_label;
- GtkButton * rmnews_button_close;
- GtkLabel * rmnews_defaultcl_label;
- GtkButton * rmnews_defaultcl_button;
- GtkSwitch * rmnews_news_switch;
-
- gint retval;
-} RemminaNewsDialog;
-
-#pragma once
-
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-extern gboolean disablenews;
-void rmnews_schedule();
-void rmnews_show_news();
-void rmnews_get_url(const char *url);
-G_END_DECLS