Developer forums (C::B DEVELOPMENT STRICTLY!) > CodeCompletion redesign
CC's new bug, SVN6049, XPSP3
Loaden:
Unwork in svn 6055 too.
--- Quote ---Initialize EditColourSet .....
Initialize EditColourSet: done.
Loading toolbar...
AStylePlugin: loaded
Autosave: loaded
BrowseTracker: loaded
Cccc: loaded
ClassWizard: loaded
CodeCompletion: loaded
CodeSnippets: loaded
CodeStat: loaded
Compiler: loaded
CppCheck: loaded
Debugger: loaded
FilesExtensionHandler: loaded
HelpPlugin: loaded
cbKeyBinder: loaded
OpenFilesList: loaded
ProjectsImporter: loaded
ScriptedWizard: loaded
ThreadSearch: loaded
ToDoList: loaded
wxSmith: loaded
wxSmithMime: loaded
wxSmithAui: loaded
wxSmithContribItems: loaded
WindowsXPLookNFeel: loaded
Source code formatter (AStyle) plugin activated
Autosave plugin activated
BrowseTracker plugin activated
Cccc plugin activated
Class wizard plugin activated
Code completion plugin activated
Code snippets plugin activated
Code statistics plugin activated
Added compiler "GNU GCC Compiler"
Parsing stage done (0 total parsed files, 0 tokens in 0 minute(s), 0.0 seconds).
Updating class browser...
Class browser updated.
Added compiler "Microsoft Visual C++ Toolkit 2003"
Added compiler "Microsoft Visual C++ 2005/2008"
Added compiler "Borland C++ Compiler (5.5, 5.82)"
Added compiler "Digital Mars Compiler"
Added compiler "OpenWatcom (W32) Compiler"
Added compiler "GNU GCC Compiler for MSP430"
Added compiler "Cygwin GCC"
Added compiler "LCC Compiler"
Added compiler "Intel C/C++ Compiler"
Added compiler "SDCC Compiler"
Added compiler "Tiny C Compiler"
Added compiler "GDC D Compiler"
Added compiler "Digital Mars D Compiler"
Added compiler "GNU ARM GCC Compiler"
Added compiler "GNU AVR GCC Compiler"
Added compiler "GNU GCC Compiler for PowerPC"
Added compiler "GNU GCC Compiler for TriCore"
Compiler plugin activated
CppCheck plugin activated
Debugger plugin activated
Files extension handler plugin activated
Help plugin plugin activated
Keyboard shortcuts plugin activated
Foreign projects importer plugin activated
Project wizard added for 'Empty project'
Project wizard added for 'Console application'
Project wizard added for 'D application'
Project wizard added for 'Direct/X project'
Project wizard added for 'Dynamic Link Library'
Project wizard added for 'Kernel Mode Driver'
Project wizard added for 'FLTK project'
Project wizard added for 'GLFW project'
Project wizard added for 'GLUT project'
Project wizard added for 'GTK+ project'
Project wizard added for 'Irrlicht project'
Project wizard added for 'Lightfeather project'
Project wizard added for 'Matlab project'
Project wizard added for 'OpenGL project'
Project wizard added for 'Ogre project'
Project wizard added for 'Code::Blocks plugin'
Project wizard added for 'QT4 project'
Project wizard added for 'SDL project'
Project wizard added for 'SmartWin project'
Project wizard added for 'Static library'
Project wizard added for 'STL port application'
Project wizard added for 'Shared library'
Project wizard added for 'Win32 GUI project'
Project wizard added for 'wxWidgets project'
Build-target wizard added for 'Console'
Build-target wizard added for 'Static library'
Build-target wizard added for 'Dynamic Link Library'
Build-target wizard added for 'wxWidgets'
Project wizard added for 'ARM Project'
Project wizard added for 'AVR Project'
Project wizard added for 'TriCore Project'
Project wizard added for 'PowerPC Project'
File(s) wizard added for 'Empty file'
File(s) wizard added for 'C/C++ source'
File(s) wizard added for 'C/C++ header'
Scripted wizard plugin activated
ThreadSearch plugin activated
Todo List plugin activated
wxSmith plugin activated
wxSmith - MIME plugin plugin activated
wxSmith - Aui plugin activated
wxSmith - Contrib Items plugin activated
Initializing plugins...
0 user templates loaded
Caching internal gcc dirs for adding to parser...
Caching GCC dir: d:\LoveDEV\lib\gcc\mingw32\4.4.1\include\c++
Caching GCC dir: d:\LoveDEV\lib\gcc\mingw32\4.4.1\include\c++\mingw32
Caching GCC dir: d:\LoveDEV\lib\gcc\mingw32\4.4.1\include\c++\backward
Caching GCC dir: d:\LoveDEV\lib\gcc\mingw32\4.4.1\include
Caching GCC dir: d:\LoveDEV\lib\gcc\mingw32\4.4.1\include-fixed
Caching GCC dir: d:\LoveDEV\include
Add project ddd in parsing queue
Project's base path: D:\Projects\ddd\
Project's common toplevel path: D:\Projects\ddd\
Passing list of files to batch-parser.
Batch-parsing 1 files...
Passing list of files to batch-parser.
Batch-parsing 1 files...
Starting batch parsing...
Text seems to be pure ASCII!
We use user specified encoding: Unicode 8 bit (UTF-8) (ID: 41)
Final encoding detected: Unicode 8 bit (UTF-8) (ID: 41)
Parsing stage done (137 total parsed files, 28673 tokens in 0 minute(s), 2.422 seconds).
Updating class browser...
Class browser updated.
Reparsing saved files...
Starting batch parsing...
Parsing stage done (152 total parsed files, 29144 tokens in 0 minute(s), 0.125 seconds).
Updating class browser...
Class browser updated.
Reparsing saved files...
Starting batch parsing...
Parsing stage done (152 total parsed files, 29144 tokens in 0 minute(s), 0.94 seconds).
Updating class browser...
Class browser updated.
Reparsing saved files...
Starting batch parsing...
Parsing stage done (152 total parsed files, 29144 tokens in 0 minute(s), 0.0 seconds).
Updating class browser...
Class browser updated.
Reparsing saved files...
Starting batch parsing...
Parsing stage done (152 total parsed files, 29144 tokens in 0 minute(s), 0.0 seconds).
Updating class browser...
Class browser updated.
--- End quote ---
[attachment deleted by admin]
Loaden:
rev6056 still not working.
I built an open-source project for the portable version of CB maintenance.
Address: http://code.google.com/p/portablecb/
You can use this version for testing:http://portablecb.googlecode.com/files/LoveDEV_SVN6056.exe
ollydbg:
--- Quote from: Loaden on January 05, 2010, 12:33:45 pm ---Operation steps:
1. Create a new C + + project
2. Add # include <vector>
3. In the main function, define a variable: vector <int> v;
4. The next line, enter the 'v.', at the point, after there has been no intelligence tips.
5. Close the current project, and then re-open this project.
6. Repeat step 4, and all normal!
--- End quote ---
I can not reproduce this.
When you create a new C++ project. I have already one cpp file in the project. some thing like below:
--- Code: ---#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
--- End code ---
Then adding some code as you said.(I don't save that file)
--- Code: ---#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector <int> v;
v.
cout << "Hello world!" << endl;
return 0;
}
--- End code ---
you can see the screen shot below:
So, it seems I can't reproduce this bug. :D
windowsXP SVN rev 6056.
[attachment deleted by admin]
ollydbg:
@Loaden.
What is your macro replacement map contains?
You can view them in
Settings->Editor->CodeCompletion and Symbols browser
then in the "C/C++ parser", see the "replacement tokens" list.
You should have several entries.
Loaden:
--- Quote from: ollydbg on January 06, 2010, 02:20:15 am ---@Loaden.
What is your macro replacement map contains?
You can view them in
Settings->Editor->CodeCompletion and Symbols browser
then in the "C/C++ parser", see the "replacement tokens" list.
You should have several entries.
--- End quote ---
Only one item.
[attachment deleted by admin]
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version