Browse Source

fixed MSVC warning.

tags/2021-05-28
jules 12 years ago
parent
commit
cc8662213b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp

+ 1
- 1
modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp View File

@@ -110,7 +110,7 @@ public:
column += token.length; column += token.length;
} }
as.draw (g, Rectangle<int> (x, y, 10000, lineH).toFloat());
as.draw (g, Rectangle<float> (x, y, 10000.0f, (float) lineH));
} }
private: private:


Loading…
Cancel
Save