From 31c7372e51f48d9705e88ab85eaf835c09c190f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Mon, 16 Oct 2006 12:41:38 +0000 Subject: [PATCH] Fix two same argument names. svn path=/trunk/KDE/kdebase/workspace/; revision=595998 --- lib/kcommondecoration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/kcommondecoration.h b/lib/kcommondecoration.h index 7da3f41859..dfa6c635d1 100644 --- a/lib/kcommondecoration.h +++ b/lib/kcommondecoration.h @@ -258,8 +258,8 @@ class KWIN_EXPORT KCommonDecoration : public KDecoration private: void resetLayout(); - void moveWidget(int x, int y, QWidget *w) const; - void resizeWidget(int w, int h, QWidget *w) const; + void moveWidget(int x, int y, QWidget *widget) const; + void resizeWidget(int w, int h, QWidget *widget) const; typedef QVector ButtonContainer; ///< If the entry is 0, it's a spacer. int buttonContainerWidth(const ButtonContainer &btnContainer, bool countHidden = false) const;