From cc43d5bc423b2315592f473ae3717f5205b4d7f0 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Sat, 26 Apr 2025 17:57:13 -0400 Subject: [PATCH] 2025-04-26 Fred Gleason * Cleaned up compiler warnings in 'rdselect/'. Signed-off-by: Fred Gleason --- ChangeLog | 2 ++ rdselect/rdselect.cpp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e94a73af..44105e83 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25004,3 +25004,5 @@ * Cleaned up compiler warnings in 'rdmonitor/'. 2025-04-26 Fred Gleason * Cleaned up compiler warnings in 'rdpanel/'. +2025-04-26 Fred Gleason + * Cleaned up compiler warnings in 'rdselect/'. diff --git a/rdselect/rdselect.cpp b/rdselect/rdselect.cpp index 82d973e8..15580953 100644 --- a/rdselect/rdselect.cpp +++ b/rdselect/rdselect.cpp @@ -2,7 +2,7 @@ // // System Selector for Rivendell // -// (C) Copyright 2012-2021 Fred Gleason +// (C) Copyright 2012-2025 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as @@ -207,7 +207,7 @@ void MainWidget::okData() } QStringList f0=select_configs[rows.first().row()]->filename(). - split("/",QString::SkipEmptyParts); + split("/",Qt::SkipEmptyParts); args.push_back(f0.last()); proc=new QProcess(this); proc->start(QString(RD_PREFIX)+"/bin/rdselect_helper",args);