aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/KvsObject_button.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2011-05-08 22:25:35 +0000
committerGravatar Fabio Bas2011-05-08 22:25:35 +0000
commit3d8714d797ce5b09cea2e3b36edee2fc231f28a1 (patch)
tree5b13cd3775c52333155ff349f3e45dc24b271b04 /src/modules/objects/KvsObject_button.cpp
parentFix fix (diff)
downloadKVIrc-3d8714d797ce5b09cea2e3b36edee2fc231f28a1.tar.gz
KVIrc-3d8714d797ce5b09cea2e3b36edee2fc231f28a1.tar.bz2
KVIrc-3d8714d797ce5b09cea2e3b36edee2fc231f28a1.zip
Objects module: fixed indentation (2nd part)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5837 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/KvsObject_button.cpp')
-rw-r--r--src/modules/objects/KvsObject_button.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/objects/KvsObject_button.cpp b/src/modules/objects/KvsObject_button.cpp
index 1730379ae..511934d3f 100644
--- a/src/modules/objects/KvsObject_button.cpp
+++ b/src/modules/objects/KvsObject_button.cpp
@@ -58,15 +58,15 @@
!fn: $setImage(<image_id_or_pixmap_object>)
Sets the icon for this button.
See the [doc:image_id]image identifier[/doc] documentation for the explaination of the <image_id> parameter.
- !fn: $clickEvent()
- Called by KVIrc when the mouse button is clicked.
- The default implementation emits the [classfnc]$clicked[/classfnc]()signal.
- @signals:
+ !fn: $clickEvent()
+ Called by KVIrc when the mouse button is clicked.
+ The default implementation emits the [classfnc]$clicked[/classfnc]()signal.
+ @signals:
!sg: $clicked()
This signal is emitted by the default implementation of [classfnc]$clickEvent[/classfnc]().
- @properties:
- !pr: $scaledContents()
- This property holds whether the label will scale its contents to fill all available space.
+ @properties:
+ !pr: $scaledContents()
+ This property holds whether the label will scale its contents to fill all available space.
*/
@@ -91,7 +91,7 @@ KVSO_END_DESTRUCTOR(KvsObject_button)
bool KvsObject_button::init(KviKvsRunTimeContext *,KviKvsVariantList *)
{
SET_OBJECT(QPushButton);
- connect(widget(),SIGNAL(clicked()),this,SLOT(slotClicked()));
+ connect(widget(),SIGNAL(clicked()),this,SLOT(slotClicked()));
return true;
}