aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_progressbar.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2008-11-08 17:17:14 +0000
committerGravatar Fabio Bas2008-11-08 17:17:14 +0000
commit2850c46e4cadcffb55e346c386137f2757b54af2 (patch)
tree9bc18c9a9456c6f732e0e7138236edda16798a12 /src/modules/objects/class_progressbar.cpp
parentapplied patch to fix kvirc4.desktop, thanks to Arfrever (diff)
downloadKVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.tar.gz
KVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.tar.bz2
KVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.zip
hopefully removed all the remaining noisy messages from gcc
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2841 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_progressbar.cpp')
-rw-r--r--src/modules/objects/class_progressbar.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/objects/class_progressbar.cpp b/src/modules/objects/class_progressbar.cpp
index 8ad81c559..ed1851fbc 100644
--- a/src/modules/objects/class_progressbar.cpp
+++ b/src/modules/objects/class_progressbar.cpp
@@ -55,16 +55,16 @@
See also [classfnc]$settotalSteps[/classfnc]()
!fn: $settotalSteps(<total_steps:uinteger>)
The progress bar uses the concept of steps; you give it the total number of steps
- and the number of steps completed so far and it will display the percentage of steps that have been completed.
- See also [classfnc]$setProgress[/classfnc]()
+ and the number of steps completed so far and it will display the percentage of steps that have been completed.
+ See also [classfnc]$setProgress[/classfnc]()
!fn: $reset()
- Reset the progress bar.
+ Reset the progress bar.
!fn: $setPercentageVisible(<bVisible,boolean>)
Sets whether the current progress value is displayed.
- See also [classfnc]$isPercentageVisible[/classfnc]()
+ See also [classfnc]$isPercentageVisible[/classfnc]()
!fn: <boolean> $ispercentageVisible()
This property holds whether the current progress value is displayed.
- See also [classfnc]$setPercentageVisible[/classfnc]()
+ See also [classfnc]$setPercentageVisible[/classfnc]()
*/
KVSO_BEGIN_REGISTERCLASS(KviKvsObject_progressbar,"progressbar","widget")
@@ -85,8 +85,8 @@ KVSO_BEGIN_DESTRUCTOR(KviKvsObject_progressbar)
KVSO_END_CONSTRUCTOR(KviKvsObject_progressbar)
-bool KviKvsObject_progressbar::init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams)
-{
+bool KviKvsObject_progressbar::init(KviKvsRunTimeContext *,KviKvsVariantList *)
+{
SET_OBJECT (QProgressBar)
return true;
}