From 85404e9b97f2c1b8e511babff89309721a35cbb9 Mon Sep 17 00:00:00 2001 From: diafero Date: Mon, 8 Aug 2011 11:51:49 +0200 Subject: [PATCH] actually display the status message in the launcher --- Sources/Plasma/Apps/plUruLauncher/Main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Plasma/Apps/plUruLauncher/Main.cpp b/Sources/Plasma/Apps/plUruLauncher/Main.cpp index 7eafd3b0..77b3c690 100644 --- a/Sources/Plasma/Apps/plUruLauncher/Main.cpp +++ b/Sources/Plasma/Apps/plUruLauncher/Main.cpp @@ -602,6 +602,7 @@ static void StatusCallback(void *) { curl_easy_setopt(hCurl, CURLOPT_USERAGENT, "UruClient/1.0"); curl_easy_setopt(hCurl, CURLOPT_URL, serverUrl); + curl_easy_setopt(hCurl, CURLOPT_WRITEFUNCTION, &CurlCallback); if (serverUrl[0] && curl_easy_perform(hCurl) != 0) // only perform request if there's actually a URL set SetStatusText(s_curlError);