Author Topic: NOPCH Patches for SVN 4078 dragscroll and keybinder  (Read 4536 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
NOPCH Patches for SVN 4078 dragscroll and keybinder
« 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.codeblocks.org/index.php/topic,5881.msg45006.html#msg45006

Tim S

Code
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__)
« Last Edit: June 08, 2007, 10:01:46 pm by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2750
Re: NOPCH Patches for SVN 4078 dragscroll and keybinder
« Reply #1 on: June 08, 2007, 11:51:25 pm »
Fixed svn 4079

Thanks