summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FL/Fl_Scroll.H2
-rw-r--r--FL/Fl_Shared_Image.H2
-rw-r--r--src/Fl_Shared_Image.cxx2
-rw-r--r--src/Fl_Text_Display.cxx12
-rw-r--r--src/Fl_Window_Driver.cxx2
5 files changed, 10 insertions, 10 deletions
diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H
index f7192a01d..9da8a2d32 100644
--- a/FL/Fl_Scroll.H
+++ b/FL/Fl_Scroll.H
@@ -99,7 +99,7 @@ protected: // (STR#1895)
Structure to manage scrollbar and widget interior sizes.
This is filled out by recalc_scrollbars() for use in calculations
that need to know the visible scroll area size, etc.
- \note Availability in FL_ABI_VERSION 10303 or higher.
+ \version 1.3.3
*/
typedef struct {
/// A local struct to manage a region defined by xywh
diff --git a/FL/Fl_Shared_Image.H b/FL/Fl_Shared_Image.H
index 2bc490688..6d177c10b 100644
--- a/FL/Fl_Shared_Image.H
+++ b/FL/Fl_Shared_Image.H
@@ -99,7 +99,7 @@ public:
and then drawing the resized copy. This occurs, e.g., when drawing to screen under Linux or MSWindows
after having called Fl_Shared_Image::scale().
This function controls what method is used when the image to be resized is an Fl_RGB_Image.
- \version 1.3.4 and requires compiling with FL_ABI_VERSION = 10304
+ \version 1.3.4
*/
static void scaling_algorithm(Fl_RGB_Scaling algorithm) {scaling_algorithm_ = algorithm; }
};
diff --git a/src/Fl_Shared_Image.cxx b/src/Fl_Shared_Image.cxx
index fa9a03c8e..1e44544b8 100644
--- a/src/Fl_Shared_Image.cxx
+++ b/src/Fl_Shared_Image.cxx
@@ -364,7 +364,7 @@ void Fl_Shared_Image::draw(int X, int Y, int W, int H, int cx, int cy) {
\param proportional if not null, keep the width and height of the shared image proportional to those of its original image
\param can_expand if null, the width and height of the shared image will not exceed those of the original image
- \version 1.3.4 and requires compiling with FL_ABI_VERSION = 10304
+ \version 1.3.4
Example code: scale an image to fit in a box
\code
diff --git a/src/Fl_Text_Display.cxx b/src/Fl_Text_Display.cxx
index dc86319aa..9588e2beb 100644
--- a/src/Fl_Text_Display.cxx
+++ b/src/Fl_Text_Display.cxx
@@ -222,7 +222,7 @@ int Fl_Text_Display::linenumber_width() const {
/**
Set the font used for line numbers (if enabled).
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_font(Fl_Font val) {
linenumber_font_ = val;
@@ -237,7 +237,7 @@ Fl_Font Fl_Text_Display::linenumber_font() const {
/**
Set the font size used for line numbers (if enabled).
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_size(Fl_Fontsize val) {
linenumber_size_ = val;
@@ -252,7 +252,7 @@ Fl_Fontsize Fl_Text_Display::linenumber_size() const {
/**
Set the foreground color used for line numbers (if enabled).
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_fgcolor(Fl_Color val) {
linenumber_fgcolor_ = val;
@@ -267,7 +267,7 @@ Fl_Color Fl_Text_Display::linenumber_fgcolor() const {
/**
Set the background color used for line numbers (if enabled).
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_bgcolor(Fl_Color val) {
linenumber_bgcolor_ = val;
@@ -283,7 +283,7 @@ Fl_Color Fl_Text_Display::linenumber_bgcolor() const {
/**
Set alignment for line numbers (if enabled).
Valid values are FL_ALIGN_LEFT, FL_ALIGN_CENTER or FL_ALIGN_RIGHT.
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_align(Fl_Align val) {
linenumber_align_ = val;
@@ -313,7 +313,7 @@ Fl_Align Fl_Text_Display::linenumber_align() const {
- "%x" -- For hexadecimal line numbers
- "%o" -- For octal line numbers
- \version 1.3.3 ABI feature (ignored in 1.3.x unless FL_ABI_VERSION is 10303 or higher)
+ \version 1.3.3
*/
void Fl_Text_Display::linenumber_format(const char* val) {
if ( linenumber_format_ ) free((void*)linenumber_format_);
diff --git a/src/Fl_Window_Driver.cxx b/src/Fl_Window_Driver.cxx
index 0399f7fff..26b436eb6 100644
--- a/src/Fl_Window_Driver.cxx
+++ b/src/Fl_Window_Driver.cxx
@@ -143,7 +143,7 @@ void Fl_Window_Driver::destroy_double_buffer() {
A usage example is found at example/shapedwindow.cxx.
- \version 1.3.3 (and requires compilation with FL_ABI_VERSION >= 10303)
+ \version 1.3.3
*/
void Fl_Window::shape(const Fl_Image* img) {pWindowDriver->shape(img);}