Fix inclusion guards for future widgets.

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=810532
This commit is contained in:
Alex Merry 2008-05-20 22:36:28 +00:00
parent 4c36d280c9
commit 9178353bb4
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
LOWERNAME=`echo $1 | tr [:upper:] [:lower:]`
NAME=$1
CAPNAME=`echo $3 | tr [:lower:] [:upper:]`
CAPNAME=`echo $1 | tr [:lower:] [:upper:]`
NATIVE="Q${NAME}"
HEADER="${LOWERNAME}.h"
SOURCE="${LOWERNAME}.cpp"

View File

@ -18,8 +18,8 @@
*/
#ifndef PLASMA_TEMPLATE_H
#define PLASMA_TEMPLATE_H
#ifndef PLASMA_<NAME>_H
#define PLASMA_<NAME>_H
#include <QGraphicsProxyWidget>