Page 1 of 1
Navigate Backward/Forward
Posted: Sun Dec 08, 2013 9:15 pm
by SteelRat
It's works from Search menu, but does not work by shortcut key. I tried to change key, but it still does nothing. What am i doing wrong?
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 1:31 pm
by SteelRat
And second question, i think there is no need to create new thread for it. When i building my project it compiles every time from very beginning except precompiled headers. Even if i have linking errors and all the sources were successfully compiled, when i press F7 it compiles again. =(
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 1:50 pm
by eranif
SteelRat wrote:It's works from Search menu, but does not work by shortcut key. I tried to change key, but it still does nothing. What am i doing wrong?
Works fine here ( on all 3 OSs...)
I am using the default Ctrl+> and Ctrl+<
SteelRat wrote:sources were successfully compiled, when i press F7 it compiles again. =(
This is usually a Makefile problem.
Try re-building (clean followed by build) this usually fixes the issue
Eran
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 3:45 pm
by SteelRat
Ok, so these are my problems. =) By the way, "Build->Clean project" command cleaned all projects in workspace. Is this my problem too? =)
upd: Shortcuts now works.
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 4:29 pm
by eranif
The reason why clean it everything is because you probably defined build order
For your active project
Eran
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 4:51 pm
by SteelRat
Yes, i defined. But i can't understand why it affects "Clean project"? What if there are two or more big libraries that were not changed six months, i have no need to rebuild them.
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 5:49 pm
by eranif
SteelRat wrote:Yes, i defined. But i can't understand why it affects "Clean project"?
Cleaning a project (or building, or rebuilding) will always perform this task on the dependent project first (in the order specificied by the "Build Order")
If you wish to clean this project only, right click on the project and select "Project Only -> Clean" (or build)
Eran
Re: Navigate Backward/Forward
Posted: Mon Dec 09, 2013 6:39 pm
by SteelRat
Thank you, Eran! =)