whoops, restoring binary compatibility in case we want it (SC was given)

svn path=/trunk/kdebase/kwin/; revision=100140
icc-effect-5.14.5
Dirk Mueller 2001-06-03 09:30:19 +00:00
parent 8e8dce5e64
commit 5a49a411dd
3 changed files with 15 additions and 7 deletions

View File

@ -18,7 +18,7 @@ kwinincludedir = $(includedir)/kwin
kwininclude_HEADERS = options.h client.h workspace.h
kwin_SOURCES = kwin_main.cpp
kwin_LDADD = kwin.la $(LIBXINERAMA)
kwin_LDADD = kwin.la
kwin_LDFLAGS = $(all_libraries) $(KDE_RPATH)
KDE_ICON = kwin

View File

@ -3643,6 +3643,11 @@ QRect Workspace::clientArea(clientAreaOption opt)
return area.intersect(rect);
}
// ### KDE3: remove me!
QRect Workspace::clientArea()
{
return clientArea( MaximizeArea );
}
void Workspace::loadDesktopSettings()
{

View File

@ -115,7 +115,10 @@ public:
enum clientAreaOption { PlacementArea, MovementArea, MaximizeArea };
QRect clientArea(clientAreaOption opt = MaximizeArea);
// default is MaximizeArea
QRect clientArea(); // ### KDE3: remove me!
QRect clientArea(clientAreaOption);
void removeClient( Client* );