Hmm, somebody went on holidays and forgot to commit killwindow.h apparently :->
Commented out the feature (you didn't think I would reimplement it, did you ?) :) And took the opportunity of touching Makefile.am for including *.moc in *.cpp (faster compilation, smaller link lines, less files...) svn path=/trunk/kdebase/kwin/; revision=52667
This commit is contained in:
parent
2c0910a283
commit
b9cc5b7cb1
7 changed files with 15 additions and 3 deletions
|
@ -6,7 +6,9 @@ SUBDIRS = . pics clients
|
|||
bin_PROGRAMS = kwin
|
||||
lib_LTLIBRARIES = kwin.la
|
||||
|
||||
kwin_la_SOURCES = atoms.cpp client.cpp main.cpp stdclient.cpp workspace.cpp tabbox.cpp options.cpp plugins.cpp events.cpp killwindow.cpp KWinInterface.skel
|
||||
kwin_la_SOURCES = atoms.cpp client.cpp main.cpp stdclient.cpp workspace.cpp \
|
||||
tabbox.cpp options.cpp plugins.cpp events.cpp KWinInterface.skel
|
||||
#killwindow.cpp
|
||||
kwin_la_LIBADD = $(LIB_KDEUI)
|
||||
kwin_la_LDFLAGS = $(all_libraries) -module -avoid-version
|
||||
|
||||
|
|
|
@ -2071,4 +2071,5 @@ NoBorderClient::~NoBorderClient()
|
|||
{
|
||||
}
|
||||
|
||||
#include "client.moc"
|
||||
|
||||
|
|
|
@ -210,3 +210,6 @@ Options::MouseCommand Options::mouseCommand(const QString &name)
|
|||
if (name == "Nothing") return MouseNothing;
|
||||
return MouseNothing;
|
||||
}
|
||||
|
||||
#include "options.moc"
|
||||
|
||||
|
|
|
@ -182,5 +182,5 @@ void PluginMgr::loadPlugin(QString nameStr)
|
|||
lt_dlclose(oldHandle);
|
||||
}
|
||||
|
||||
|
||||
#include "plugins.moc"
|
||||
|
||||
|
|
|
@ -394,3 +394,4 @@ void StdClient::maxButtonClicked( int button )
|
|||
}
|
||||
}
|
||||
|
||||
#include "stdclient.moc"
|
||||
|
|
|
@ -296,3 +296,4 @@ TabBox::delayedShow()
|
|||
delayedShowTimer.start(delayTime, true);
|
||||
}
|
||||
|
||||
#include "tabbox.moc"
|
||||
|
|
|
@ -25,7 +25,7 @@ Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|||
#include "atoms.h"
|
||||
#include "plugins.h"
|
||||
#include "events.h"
|
||||
#include "killwindow.h"
|
||||
//#include "killwindow.h"
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xos.h>
|
||||
#include <X11/Xlib.h>
|
||||
|
@ -1939,8 +1939,11 @@ void Workspace::slotLogout()
|
|||
*/
|
||||
void Workspace::slotKillWindow()
|
||||
{
|
||||
#warning KillWindow missing because killwindow.h not committed...
|
||||
/*
|
||||
KillWindow kill( this );
|
||||
kill.start();
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
|
@ -2382,3 +2385,4 @@ QRect Workspace::clientArea()
|
|||
return area;
|
||||
}
|
||||
|
||||
#include "workspace.moc"
|
||||
|
|
Loading…
Reference in a new issue