From 9bdc12ba9506d440754975a7904bcc0875f5ec60 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Tue, 17 May 2011 05:31:33 +0000 Subject: [PATCH] Removed unused HC_SLEEP command. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8623 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/addons/request.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/addons/request.hpp b/src/addons/request.hpp index ec46c2329..d7c92c4b7 100644 --- a/src/addons/request.hpp +++ b/src/addons/request.hpp @@ -29,14 +29,12 @@ class Request { public: /** List of 'http commands' for this object: - * HC_SLEEP: No command, sleep * HC_INIT: Object is being initialised * HC_DOWNLOAD_FILE : download a file * HC_QUIT: Stop loop and terminate thread. * HC_NEWS: Update the news */ - enum HttpCommands {HC_SLEEP, - HC_QUIT, + enum HttpCommands {HC_QUIT, HC_INIT, HC_DOWNLOAD_FILE, HC_NEWS };