Markus Schorn
7aef1d752c
Fix preferences to use -source 1.4
2006-07-03 17:52:34 +00:00
Anton Leherbauer
82bc1b486e
Patch from Benoit Miller for Bug 148436 - Cannot change default text color in Makefile editor
2006-07-03 14:25:07 +00:00
Anton Leherbauer
ed64c1a6f9
Fix working-set filter updates
2006-07-03 14:06:54 +00:00
Markus Schorn
99de459e00
Ran cleanup wizard to get rid of 70 warnings.
2006-07-03 13:41:02 +00:00
Anton Leherbauer
60a6df99a1
Fix Java 1.4 compliance
2006-07-03 13:24:36 +00:00
Markus Schorn
5019404aca
Fix definition of execution environment (to 1.4)
2006-07-03 13:08:47 +00:00
Anton Leherbauer
188d10797d
Fix for Bug 48339 - Auto comment code odd behaviour
...
* Adds CAutoIndentTest to AutomatedTestSuite
2006-07-03 13:01:44 +00:00
Markus Schorn
328e4c08f1
Add position trackers, includes test cases.
2006-07-03 13:01:05 +00:00
Markus Schorn
6d99d620f3
Fixes warnings
2006-07-03 13:00:25 +00:00
Anton Leherbauer
ed4662692b
Fix for bug 141295 - Avoid using deprecated extension point "documentCreation"
...
* Removed documentCreation extensions
* Removed IDocumentFactory implementations
* Removed PartiallySynchronizedDocument classes
* Removed private SetUpSynchronization methods from document providers
2006-07-03 09:49:47 +00:00
Anton Leherbauer
36c5a333f1
Common Navigator extensions - bug 140337
2006-07-03 09:11:48 +00:00
Markus Schorn
7f90464021
Define minimum execution environment with 1.4 and allow usage of assert.
2006-07-03 08:13:55 +00:00
Markus Schorn
2a8a06ab31
Initial version of the Include Browser
2006-06-30 09:42:39 +00:00
Markus Schorn
b49574295b
Fixes warnings
2006-06-30 09:28:50 +00:00
Markus Schorn
948ad54c3a
Fix potential endless loops because of path.isEmpty()
2006-06-30 09:28:30 +00:00
Markus Schorn
12e256794c
Removes unused WorkingSetFilterActions, they are provided by the platform nowadays.
2006-06-30 09:26:14 +00:00
Markus Schorn
de97370998
Fixes typo in method name setHeightHint
2006-06-30 09:22:59 +00:00
Markus Schorn
608e02480f
Define coding style
2006-06-30 09:19:36 +00:00
Markus Schorn
aa41e8f4eb
Adds support for Show in Navigator from the CView.
2006-06-30 09:18:51 +00:00
Markus Schorn
6306740d2b
Fix 69597, include entry on linked resource.
2006-06-30 08:48:36 +00:00
Chris Recoskie
fc4c6c5718
fix for 148439 NPE in build/clean selected files functionality
2006-06-26 13:21:00 +00:00
Doug Schaefer
a87683fe12
Backing out patch for Bug 148114
2006-06-23 20:11:35 +00:00
Andrew Niefer
aca80b97db
bug 147080 - stack overflow errors
2006-06-23 19:03:18 +00:00
Mikhail Sennikovsky
d359b44186
Fixed revision to 3.1
2006-06-23 18:55:42 +00:00
Doug Schaefer
a48b5f55b1
Updated copyright dates to reflect latest in CVS.
2006-06-23 17:52:45 +00:00
Doug Schaefer
17464c08f4
Update Copyright dates and fix those that had no copyrights.
2006-06-23 17:27:03 +00:00
Anton Leherbauer
9e1827d28b
Fix for bug 148114 - Move-refactor should be disabled within C/C++ Project view
2006-06-22 14:27:35 +00:00
Doug Schaefer
50c51184a1
Adding license and notice to distributions.
2006-06-21 17:41:40 +00:00
Doug Schaefer
9daef1d2de
Adding license and notice to distributions.
2006-06-21 15:56:29 +00:00
Doug Schaefer
0dec7a5a97
Adding license and notice to distributions.
2006-06-21 15:33:38 +00:00
Anton Leherbauer
7fc9ce0335
Fix for bug 141484 - Data loss when dnd elements in C/C++ Project browser
2006-06-21 14:48:17 +00:00
Doug Schaefer
406419e29a
Adding license and notice to distributions.
2006-06-21 14:36:40 +00:00
Oleg Krasilnikov
eb6414526f
[Bug 147999] CModelBuilder runs into infinite loop
...
Additional check to avoid looping in "nextTable[]" values
2006-06-21 11:55:46 +00:00
Oleg Krasilnikov
cd052ee5de
[Bug 148003] [New Class Wizard] Browse for Folder can cause infinite loop
...
Problem reason: loop inside of NewClassWizardUtil.getSourceFolder().
After "path.removeLastSegments(1)" deletes the last segment, path
would contain "\", because (separators & HAS_LEADING) != 0)
So, "path.isEmpty()" treats it as root path and returns false.
That's why loop became infinite.
Fix:
- while (!path.isEmpty()) {
+ while (path.segmentCount() > 0) {
2006-06-21 11:50:10 +00:00
Oleg Krasilnikov
dafc8e4478
Bug 142465 :Exception when expanding binary node in CView
...
Avoid duplication source files. 1-line change.
2006-06-19 11:23:22 +00:00
Mikhail Sennikovsky
74e3308a05
Fix for bugs 140854 and 147296
2006-06-16 10:00:46 +00:00
David Inglis
a94a0fef49
fixed for https://bugs.eclipse.org/bugs/show_bug.cgi?id=145602
2006-06-15 16:02:10 +00:00
Ken Ryall
b77acc0bee
Treat DWARF_DEBUG_STR as optional as not all compilers generate it.
2006-06-15 15:39:45 +00:00
Ken Ryall
7c32c381ed
Fix for 142465. Attempt to resolve relative path source file entries. Also check to make sure we can get valid ids for all files before making a TranslationUnit for them.
2006-06-15 15:39:04 +00:00
Ken Ryall
e539d8c06d
Added missing copyright notices.
2006-06-15 15:36:43 +00:00
Ken Ryall
95ffc3032a
Added docs describing how to import and debug existing executables.
2006-06-15 15:36:23 +00:00
Mikhail Sennikovsky
b3fa88e4c8
Fix for bug#147070
2006-06-15 14:55:53 +00:00
Chris Recoskie
4836857ef3
update copyrights
2006-06-14 12:16:17 +00:00
Chris Recoskie
b27f90989b
copyright updates
2006-06-12 15:19:12 +00:00
Chris Recoskie
82bd8cc025
fix for 146254 by Beth Tibbitts
2006-06-12 13:27:58 +00:00
John Camelon
077fbb67ae
Fix for bug 126136 - Out of memory error on recursive macro
2006-06-12 01:08:32 +00:00
Doug Schaefer
52d99fabef
Bug 145245 - Added check in CPPASTTemplateId to detect that we're recursing and return null if we are. I also had to change CPPClassScope a little which wasn't expecting the null.
2006-06-09 17:50:30 +00:00
Chris Recoskie
7279f74fd0
fix for 146239 from Beth Tibbitts, plus some other minor formatting and wording changes
2006-06-09 15:55:15 +00:00
Doug Schaefer
2aedbfe181
Bug 1444462 - Convert the * and ? in search patterns to regular expression syntax. Also improved the error handling a bit for bad regex's. Also fixed up the extension ID so that the C/C++ search page opens when requested.
2006-06-09 15:41:01 +00:00
Mikhail Sennikovsky
27eee377fe
Work-around fix for 145099
2006-06-09 15:25:49 +00:00