Browse Source

Added some missing JUCE_API modifiers.

tags/2021-05-28
jules 12 years ago
parent
commit
9eb3c1955a
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      modules/juce_graphics/images/juce_Image.h
  2. +1
    -1
      modules/juce_gui_basics/widgets/juce_TextEditor.h
  3. +1
    -1
      modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.h

+ 1
- 1
modules/juce_graphics/images/juce_Image.h View File

@@ -307,7 +307,7 @@ public:
The actual format of the pixel data depends on the image's format - see Image::getFormat(), The actual format of the pixel data depends on the image's format - see Image::getFormat(),
and the PixelRGB, PixelARGB and PixelAlpha classes for more info. and the PixelRGB, PixelARGB and PixelAlpha classes for more info.
*/ */
class BitmapData
class JUCE_API BitmapData
{ {
public: public:
enum ReadWriteMode enum ReadWriteMode


+ 1
- 1
modules/juce_gui_basics/widgets/juce_TextEditor.h View File

@@ -532,7 +532,7 @@ public:
/** Base class for input filters that can be applied to a TextEditor to restrict /** Base class for input filters that can be applied to a TextEditor to restrict
the text that can be entered. the text that can be entered.
*/ */
class InputFilter
class JUCE_API InputFilter
{ {
public: public:
InputFilter() {} InputFilter() {}


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

@@ -206,7 +206,7 @@ public:
const Font& getFont() const noexcept { return font; } const Font& getFont() const noexcept { return font; }
//============================================================================== //==============================================================================
struct ColourScheme
struct JUCE_API ColourScheme
{ {
struct TokenType struct TokenType
{ {


Loading…
Cancel
Save