From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id A39B3A1858 for ; Thu, 15 Jun 2023 14:15:35 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 86E9126B39 for ; Thu, 15 Jun 2023 14:15:05 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Thu, 15 Jun 2023 14:15:05 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id C0EE545864 for ; Thu, 15 Jun 2023 14:15:04 +0200 (CEST) From: Maximiliano Sandoval To: pve-devel@lists.proxmox.com Date: Thu, 15 Jun 2023 14:15:02 +0200 Message-Id: <20230615121503.84263-4-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230615121503.84263-1-m.sandoval@proxmox.com> References: <20230615121503.84263-1-m.sandoval@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH installer 3/4] stop using Gtk3::HSeparator X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2023 12:15:35 -0000 This was deprecated in GTK 3.2, the replacement Gtk3::Separator was added in GTK 3.0. Signed-off-by: Maximiliano Sandoval --- proxinstall | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proxinstall b/proxinstall index 105904f..d2f3d26 100755 --- a/proxinstall +++ b/proxinstall @@ -1513,7 +1513,7 @@ sub create_main_window { # $f1->set_shadow_type ('none'); # $hbox->pack_start ($f1, 1, 1, 0); - my $sep1 = Gtk3::HSeparator->new(); + my $sep1 = Gtk3::Separator->new('horizontal'); $vbox->pack_start($sep1, 0, 0, 0); $cmdbox = Gtk3::Box->new('horizontal', 0); @@ -1550,7 +1550,7 @@ sub create_main_window { my $vbox3 = Gtk3::Box->new('vertical', 0); $vbox2->pack_start($vbox3, 0, 0, 0); - my $sep2 = Gtk3::HSeparator->new; + my $sep2 = Gtk3::Separator->new('horizontal'); $vbox3->pack_start($sep2, 0, 0, 0); $inbox = Gtk3::Box->new('horizontal', 0); @@ -2553,7 +2553,7 @@ sub create_hdoption_view { $row++; - my $sep = Gtk3::HSeparator->new(); + my $sep = Gtk3::Separator->new('horizontal'); $sep->set_visible(1); $grid->attach($sep, 0, $row, 2, 1); $row++; @@ -2674,7 +2674,7 @@ sub create_hdoption_view { &$switch_view(); }); - my $sep2 = Gtk3::HSeparator->new(); + my $sep2 = Gtk3::Separator->new('horizontal'); $sep2->set_visible(1); $contarea->pack_end($sep2, 1, 1, 10); -- 2.39.2