missing file
svn path=/trunk/kdebase/kwin/; revision=53658
This commit is contained in:
parent
9bf0f3010b
commit
64f8bc08a9
3 changed files with 27 additions and 6 deletions
|
@ -7,8 +7,8 @@ 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 KWinInterface.skel
|
||||
#killwindow.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
|
||||
|
||||
|
|
24
killwindow.h
Normal file
24
killwindow.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*****************************************************************
|
||||
kwin - the KDE window manager
|
||||
|
||||
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
||||
******************************************************************/
|
||||
#ifndef KILLWINDOW_H
|
||||
#define KILLWINDOW_H
|
||||
|
||||
#include "workspace.h"
|
||||
|
||||
class KillWindow
|
||||
{
|
||||
public:
|
||||
|
||||
KillWindow( Workspace* ws );
|
||||
~KillWindow();
|
||||
|
||||
void start();
|
||||
|
||||
private:
|
||||
Workspace* workspace;
|
||||
};
|
||||
|
||||
#endif
|
|
@ -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,11 +1939,8 @@ void Workspace::slotLogout()
|
|||
*/
|
||||
void Workspace::slotKillWindow()
|
||||
{
|
||||
#warning KillWindow missing because killwindow.h not committed...
|
||||
/*
|
||||
KillWindow kill( this );
|
||||
kill.start();
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue