Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: stahta01 on June 08, 2007, 09:52:39 PM

Title: NOPCH Patches for SVN 4078 dragscroll and keybinder
Post by: stahta01 on June 08, 2007, 09:52:39 PM
@Pecan

FYI: Testing showed missing includes, tested under windows.
Method used to test outlined in thread
http://forums.next.codeblocks.org/index.php/topic,5881.msg45006.html#msg45006

Tim S


Index: src/plugins/contrib/dragscroll/dragscroll.cpp
===================================================================
--- src/plugins/contrib/dragscroll/dragscroll.cpp (revision 4078)
+++ src/plugins/contrib/dragscroll/dragscroll.cpp (working copy)
@@ -18,6 +18,7 @@

#ifndef CB_PRECOMP
     #include "sdk_events.h" // EVT_APP_STARTUP_DONE
+    #include "personalitymanager.h"
#endif

// Register the plugin
Index: src/plugins/contrib/keybinder/cbkeybinder.cpp
===================================================================
--- src/plugins/contrib/keybinder/cbkeybinder.cpp (revision 4078)
+++ src/plugins/contrib/keybinder/cbkeybinder.cpp (working copy)
@@ -15,6 +15,7 @@
#else
     #include "sdk_common.h"
     #include "sdk_events.h"
+    #include "personalitymanager.h"
#endif

#if defined(__GNUG__) && !defined(__APPLE__)
Title: Re: NOPCH Patches for SVN 4078 dragscroll and keybinder
Post by: Pecan on June 08, 2007, 11:51:25 PM
Fixed svn 4079

Thanks