From 7c1d536ad3f1adbc5da5975df56c38fca508064f Mon Sep 17 00:00:00 2001 From: Till Krech Date: Sat, 6 Jul 2002 02:05:46 +0000 Subject: [PATCH] make it compile again... RCS file: /home/kde/kdebase/kwin/client.h,v retrieving revision 1.82 diff -u -p -r1.82 client.h --- client.h 2002/07/05 20:00:02 1.82 +++ client.h 2002/07/06 02:04:23 @@ -155,7 +155,7 @@ public: bool isDesktop() const; bool isDock() const; bool isTool() const; - bool isMenu() const; + bool isTopMenu() const; bool isResizable() const; Index: plugins.cpp =================================================================== RCS file: /home/kde/kdebase/kwin/plugins.cpp,v retrieving revision 1.30 diff -u -p -r1.30 plugins.cpp --- plugins.cpp 2002/07/05 20:05:22 1.30 +++ plugins.cpp 2002/07/06 02:04:23 @@ -119,7 +119,7 @@ bool PluginMgr::loadPlugin(QString nameS void* create_func = library->symbol("create"); if(create_func) { - create_ptr = (Client* (*)(Workspace *ws, WId w, NET::WindowType, NET::WindowType))create_func ; + create_ptr = (Client* (*)(Workspace *ws, WId w, NET::WindowType))create_func; } create_func = library->symbol("allocate"); if(create_func) { svn path=/trunk/kdebase/kwin/; revision=165118 --- client.h | 2 +- plugins.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client.h b/client.h index bf2d389730..bf4010ea1d 100644 --- a/client.h +++ b/client.h @@ -155,7 +155,7 @@ public: bool isDesktop() const; bool isDock() const; bool isTool() const; - bool isMenu() const; + bool isTopMenu() const; bool isResizable() const; diff --git a/plugins.cpp b/plugins.cpp index 4d7118b630..f3449a7427 100644 --- a/plugins.cpp +++ b/plugins.cpp @@ -119,7 +119,7 @@ bool PluginMgr::loadPlugin(QString nameStr) void* create_func = library->symbol("create"); if(create_func) { - create_ptr = (Client* (*)(Workspace *ws, WId w, NET::WindowType, NET::WindowType))create_func; + create_ptr = (Client* (*)(Workspace *ws, WId w, NET::WindowType))create_func; } create_func = library->symbol("allocate"); if(create_func) {