From 51590aaa4f740833da4b3ca77cb5efc65815aedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sun, 4 May 2025 18:12:37 +0200 Subject: [PATCH] Rename method --- YACReaderLibrary/comic_vine/comic_vine_dialog.cpp | 2 +- YACReaderLibrary/comic_vine/comic_vine_dialog.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/YACReaderLibrary/comic_vine/comic_vine_dialog.cpp b/YACReaderLibrary/comic_vine/comic_vine_dialog.cpp index 32a14470..2d6f4e77 100644 --- a/YACReaderLibrary/comic_vine/comic_vine_dialog.cpp +++ b/YACReaderLibrary/comic_vine/comic_vine_dialog.cpp @@ -291,7 +291,7 @@ void ComicVineDialog::doLoading() content->addWidget(w); } -void ComicVineDialog::debugClientResults(const QString &string) +void ComicVineDialog::processClientResults(const QString &string) { ResponseParser p; p.loadJSONResponse(string); diff --git a/YACReaderLibrary/comic_vine/comic_vine_dialog.h b/YACReaderLibrary/comic_vine/comic_vine_dialog.h index 0ba3ccb7..1afb4181 100644 --- a/YACReaderLibrary/comic_vine/comic_vine_dialog.h +++ b/YACReaderLibrary/comic_vine/comic_vine_dialog.h @@ -42,7 +42,7 @@ public slots: protected slots: void goNext(); void goBack(); - void debugClientResults(const QString &string); + void processClientResults(const QString &string); // show widget methods void showSeriesQuestion(); void showSearchSingleComic();