Non-inline functions should be in .cpp .

svn path=/branches/work/kwin_composite/; revision=652257
This commit is contained in:
Luboš Luňák 2007-04-10 14:53:13 +00:00
parent aee0ae9760
commit 04a3787213
4 changed files with 3 additions and 4 deletions

View file

@ -28,6 +28,7 @@ License. See the file "COPYING" for the exact licensing terms.
namespace KWin
{
KWIN_EFFECT( PresentWindows, PresentWindowsEffect )
PresentWindowsEffect::PresentWindowsEffect() : QObject(), Effect()
{

View file

@ -83,8 +83,6 @@ class PresentWindowsEffect
ElectricBorder borderActivateAll;
};
KWIN_EFFECT( PresentWindows, PresentWindowsEffect );
} // namespace
#endif

View file

@ -15,6 +15,8 @@ License. See the file "COPYING" for the exact licensing terms.
namespace KWin
{
KWIN_EFFECT( Shadow, ShadowEffect )
ShadowEffect::ShadowEffect()
: shadowXOffset( 10 )
, shadowYOffset( 10 )

View file

@ -30,8 +30,6 @@ class ShadowEffect
int shadowXOffset, shadowYOffset;
};
KWIN_EFFECT( Shadow, ShadowEffect )
} // namespace
#endif