mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for some VC compiler warnings.
This commit is contained in:
parent
ab774b814e
commit
36e7c12504
2 changed files with 4 additions and 4 deletions
|
|
@ -428,7 +428,7 @@ void GlyphArrangement::moveRangeOfGlyphs (int startIndex, int num, const float d
|
|||
}
|
||||
|
||||
void GlyphArrangement::addLinesWithLineBreaks (const String& text, const Font& f,
|
||||
int x, int y, int width, int height, Justification layout)
|
||||
float x, float y, float width, float height, Justification layout)
|
||||
{
|
||||
GlyphArrangement ga;
|
||||
ga.addJustifiedText (f, text, x, y, width, layout);
|
||||
|
|
@ -609,7 +609,7 @@ void GlyphArrangement::spreadOutLine (const int start, const int num, const floa
|
|||
|
||||
|
||||
void GlyphArrangement::splitLines (const String& text, Font font, int startIndex,
|
||||
int x, int y, int width, int height, int maximumLines,
|
||||
float x, float y, float width, float height, int maximumLines,
|
||||
float lineWidth, Justification layout, float minimumHorizontalScale)
|
||||
{
|
||||
const int length = text.length();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue