Drop unused var and sort copyright

This commit is contained in:
Simon Steinbeiss
2021-01-25 09:53:01 +01:00
committed by Simon Steinbeiß
parent 07dd87723b
commit 1b0aaad892
3 changed files with 1 additions and 5 deletions

View File

@@ -285,11 +285,9 @@ xtm_process_window_init (XtmProcessWindow *window)
{
GtkWidget *toolitem;
guint refresh_rate;
gint handle_position;
g_object_get (window->settings,
"refresh-rate", &refresh_rate,
"handle-position", &handle_position,
NULL);
window->vpaned = GTK_WIDGET (gtk_builder_get_object (window->builder, "mainview-vpaned"));

View File

@@ -107,11 +107,11 @@ static void
show_about_dialog (GtkWidget *widget, gpointer user_data)
{
const gchar *authors[] = {
"(c) 2014-2020 Simon Steinbeiss",
"(c) 2018-2019 Rozhuk Ivan",
"(c) 2014 Landry Breuil",
"(c) 2014 Harald Judt",
"(c) 2014 Peter de Ridder",
"(c) 2014-2020 Simon Steinbeiss",
"(c) 2008-2010 Mike Massonnet",
"(c) 2005-2008 Johannes Zellner",
"",

View File

@@ -116,8 +116,6 @@ xtm_settings_class_init (XtmSettingsClass *klass)
g_param_spec_uint ("sort-column-id", "SortColumn", "Sort by column id", 0, G_MAXUINT, 0, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_SORT_TYPE,
g_param_spec_uint ("sort-type", "SortType", "Sort type (asc/dsc)", 0, 1, 0, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_HANDLE_POSITION,
g_param_spec_int ("handle-position", "HandlePosition", "Handle position", -1, G_MAXINT, -1, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_PROCESS_TREE,
g_param_spec_boolean ("process-tree", "ProcessTreeView", "Process tree", FALSE, G_PARAM_READWRITE));
}