[CM] grace runs as root user only
Heinrich Taube
taube at uiuc.edu
Wed Apr 7 12:01:24 PDT 2010
yikes do you mean to say that jack is working in 3.5.2 but NOT in
3.6.0 ???
I dont know how that could happen -- they are using the identical
juce_amalgmatated sources expect for some trivial mods i added in
3.6.0 for the new CodeEditor (which is not in 3.5.2).
[ccrma-gate hkt] ~/Software> diff xcm/src/juce_amalgamated.cpp cm3.5.2/
src/juce_amalgamated.cpp
390c390
< // #define JUCE_CHECK_MEMORY_LEAKS 1
---
> #define JUCE_CHECK_MEMORY_LEAKS 1
45339,45371d45338
< const Font CodeEditorComponent::getFont() // HKT
< {
< return font;
< }
<
< int CodeEditorComponent::getHighlightedRegionLength() // HKT
< {
< return jmax(0, selectionEnd.getPosition()-
selectionStart.getPosition());
< }
<
< const CodeDocument::Position
CodeEditorComponent::getHighlightedRegionStart() // HKT
< {
< return selectionStart;
< }
<
< const CodeDocument::Position
CodeEditorComponent::getHighlightedRegionEnd() // HKT
< {
< return selectionEnd;
< }
<
< void CodeEditorComponent::setHighlightedRegion(const
CodeDocument::Position pos, const int len) // HKT
< {
< moveCaretTo(pos, false);
< moveCaretTo(pos.movedBy(len), true);
< }
<
< const String CodeEditorComponent::getHighlightedText() // HKT
< {
< if (selectionEnd.getPosition()>selectionStart.getPosition())
< return getDocument().getTextBetween(selectionStart, selectionEnd);
< else return String::empty;
< }
<
[ccrma-gate hkt] ~/Software>
More information about the Cmdist
mailing list