diff --git a/debian/changelog b/debian/changelog index 1679000..65383b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,14 @@ +squidview (0.64-4) unstable; urgency=low + + * Better implementation for additional parameter iWait in RunProgram + (thanks Michael Vogt) + * This release should make it into unstable (closes #233280) + + -- Willi Mann Sat, 21 Feb 2004 11:54:28 +0100 + squidview (0.64-3) unstable; urgency=low * Depend on less. - * This release should make it into unstable (closes #233280) * Add info about homepage to Description. -- Willi Mann Fri, 20 Feb 2004 14:51:53 +0100 diff --git a/squidview.cpp b/squidview.cpp index 8795cd2..dfb2865 100644 --- a/squidview.cpp +++ b/squidview.cpp @@ -162,12 +162,9 @@ return sLog.st_size; } -void RunProgram(const string& sCommand, int iErase){ - RunProgram(sCommand, iErase, 0); -} // execute a shell command -void RunProgram (const string& sCommand, int iErase, int iWait) +void RunProgram (const string& sCommand, int iErase, int iWait = 0) //Debian - Notes: 1) "reset -Q" resets the size of my terminal (konsole). //2) I don't believe "clear" is a proper way for this sort of //terminal-cleaning. diff --git a/squidview.h b/squidview.h index 5c3fe92..b00323c 100644 --- a/squidview.h +++ b/squidview.h @@ -317,7 +317,3 @@ bool bAcceptDenies; }; -//Declaration of RunProgram to allow overloading. -void RunProgram(const string&, int ); -void RunProgram(const string&, int, int); -