diff --git a/src/add-ons/decorators/BeDecorator/BeDecorator.cpp b/src/add-ons/decorators/BeDecorator/BeDecorator.cpp index 09f74b7b40..0160dbe620 100644 --- a/src/add-ons/decorators/BeDecorator/BeDecorator.cpp +++ b/src/add-ons/decorators/BeDecorator/BeDecorator.cpp @@ -483,4 +483,4 @@ extern "C" float get_decorator_version(void) extern "C" Decorator *instantiate_decorator(BRect rect, int32 wlook, int32 wfeel, int32 wflags) { return new BeDecorator(rect,wlook,wfeel,wflags); -} \ No newline at end of file +} diff --git a/src/add-ons/decorators/BeDecorator/BeDecorator.h b/src/add-ons/decorators/BeDecorator/BeDecorator.h index 9f9189b1cf..9d7394cc39 100644 --- a/src/add-ons/decorators/BeDecorator/BeDecorator.h +++ b/src/add-ons/decorators/BeDecorator/BeDecorator.h @@ -40,4 +40,4 @@ protected: int textoffset; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/ColorSet.h b/src/add-ons/decorators/BeDecorator/ColorSet.h index 5eac8d7ebc..b1479e181d 100644 --- a/src/add-ons/decorators/BeDecorator/ColorSet.h +++ b/src/add-ons/decorators/BeDecorator/ColorSet.h @@ -35,4 +35,4 @@ public: desktop; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/ColorUtils.h b/src/add-ons/decorators/BeDecorator/ColorUtils.h index c4002d2357..3eb674bc46 100644 --- a/src/add-ons/decorators/BeDecorator/ColorUtils.h +++ b/src/add-ons/decorators/BeDecorator/ColorUtils.h @@ -17,4 +17,4 @@ uint16 FindClosestColor16(rgb_color color); // Alpha components are included in the calculations. 0 yields color #1 // and 1 yields color #2. rgb_color MakeBlendColor(rgb_color col, rgb_color col2, float position); -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/ColorWell.cpp b/src/add-ons/decorators/BeDecorator/ColorWell.cpp index 6cb94a5e2a..4fbfdf9c77 100644 --- a/src/add-ons/decorators/BeDecorator/ColorWell.cpp +++ b/src/add-ons/decorators/BeDecorator/ColorWell.cpp @@ -102,4 +102,4 @@ rgb_color ColorWell::Color(void) const void ColorWell::SetMode(bool is_rectangle) { is_rect=is_rectangle; -} \ No newline at end of file +} diff --git a/src/add-ons/decorators/BeDecorator/ColorWell.h b/src/add-ons/decorators/BeDecorator/ColorWell.h index ffbb8c1103..238c11a082 100644 --- a/src/add-ons/decorators/BeDecorator/ColorWell.h +++ b/src/add-ons/decorators/BeDecorator/ColorWell.h @@ -24,4 +24,4 @@ protected: rgb_color disabledcol, currentcol; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/DisplayDriver.h b/src/add-ons/decorators/BeDecorator/DisplayDriver.h index 8f4f9f667f..f1913be6e3 100644 --- a/src/add-ons/decorators/BeDecorator/DisplayDriver.h +++ b/src/add-ons/decorators/BeDecorator/DisplayDriver.h @@ -111,4 +111,4 @@ private: int32 buffer_mode; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/Jamfile b/src/add-ons/decorators/BeDecorator/Jamfile index a2f90c63f8..a6dbec4132 100644 --- a/src/add-ons/decorators/BeDecorator/Jamfile +++ b/src/add-ons/decorators/BeDecorator/Jamfile @@ -7,4 +7,6 @@ Addon BeDecorator : decorators : Decorator.cpp DisplayDriver.cpp RGBColor.cpp -; \ No newline at end of file +; + +LinkSharedOSLibs BeDecorator : be ; diff --git a/src/add-ons/decorators/BeDecorator/LayerData.h b/src/add-ons/decorators/BeDecorator/LayerData.h index 6051aeb0ea..1b8124b5e2 100644 --- a/src/add-ons/decorators/BeDecorator/LayerData.h +++ b/src/add-ons/decorators/BeDecorator/LayerData.h @@ -33,4 +33,4 @@ float scale; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/RGBColor.h b/src/add-ons/decorators/BeDecorator/RGBColor.h index 1f91f74897..036e9d1561 100644 --- a/src/add-ons/decorators/BeDecorator/RGBColor.h +++ b/src/add-ons/decorators/BeDecorator/RGBColor.h @@ -30,4 +30,4 @@ protected: uint8 color8; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/BeDecorator/defs.h b/src/add-ons/decorators/BeDecorator/defs.h index 9b491d0719..2c0e3c9905 100644 --- a/src/add-ons/decorators/BeDecorator/defs.h +++ b/src/add-ons/decorators/BeDecorator/defs.h @@ -17,4 +17,4 @@ #define GET_DECORATOR 'gdec' #define SET_UI_COLORS 'suic' -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/ColorSet.cpp b/src/add-ons/decorators/WinDecorator/ColorSet.cpp index f1451824c2..dd2cd5d259 100644 --- a/src/add-ons/decorators/WinDecorator/ColorSet.cpp +++ b/src/add-ons/decorators/WinDecorator/ColorSet.cpp @@ -58,4 +58,4 @@ void ColorSet::SetColors(const ColorSet &cs) window_tab_text=cs.window_tab_text; keyboard_navigation=cs.keyboard_navigation; desktop=cs.desktop; -} \ No newline at end of file +} diff --git a/src/add-ons/decorators/WinDecorator/ColorSet.h b/src/add-ons/decorators/WinDecorator/ColorSet.h index 4771e88be8..370aec5bc7 100644 --- a/src/add-ons/decorators/WinDecorator/ColorSet.h +++ b/src/add-ons/decorators/WinDecorator/ColorSet.h @@ -34,4 +34,4 @@ public: desktop; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/ColorUtils.h b/src/add-ons/decorators/WinDecorator/ColorUtils.h index c4002d2357..3eb674bc46 100644 --- a/src/add-ons/decorators/WinDecorator/ColorUtils.h +++ b/src/add-ons/decorators/WinDecorator/ColorUtils.h @@ -17,4 +17,4 @@ uint16 FindClosestColor16(rgb_color color); // Alpha components are included in the calculations. 0 yields color #1 // and 1 yields color #2. rgb_color MakeBlendColor(rgb_color col, rgb_color col2, float position); -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/DisplayDriver.h b/src/add-ons/decorators/WinDecorator/DisplayDriver.h index 8f4f9f667f..f1913be6e3 100644 --- a/src/add-ons/decorators/WinDecorator/DisplayDriver.h +++ b/src/add-ons/decorators/WinDecorator/DisplayDriver.h @@ -111,4 +111,4 @@ private: int32 buffer_mode; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/LayerData.h b/src/add-ons/decorators/WinDecorator/LayerData.h index 6051aeb0ea..1b8124b5e2 100644 --- a/src/add-ons/decorators/WinDecorator/LayerData.h +++ b/src/add-ons/decorators/WinDecorator/LayerData.h @@ -33,4 +33,4 @@ float scale; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/RGBColor.h b/src/add-ons/decorators/WinDecorator/RGBColor.h index e7e1dad03e..bccb397413 100644 --- a/src/add-ons/decorators/WinDecorator/RGBColor.h +++ b/src/add-ons/decorators/WinDecorator/RGBColor.h @@ -29,4 +29,4 @@ protected: uint8 color8; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/WinDecorator.cpp b/src/add-ons/decorators/WinDecorator/WinDecorator.cpp index b57a9cda20..de42253744 100644 --- a/src/add-ons/decorators/WinDecorator/WinDecorator.cpp +++ b/src/add-ons/decorators/WinDecorator/WinDecorator.cpp @@ -397,4 +397,4 @@ extern "C" float get_decorator_version(void) extern "C" Decorator *instantiate_decorator(BRect rect, int32 wlook, int32 wfeel, int32 wflags) { return new WinDecorator(rect,wlook,wfeel,wflags); -} \ No newline at end of file +} diff --git a/src/add-ons/decorators/WinDecorator/WinDecorator.h b/src/add-ons/decorators/WinDecorator/WinDecorator.h index 136747681c..2e7c0439d3 100644 --- a/src/add-ons/decorators/WinDecorator/WinDecorator.h +++ b/src/add-ons/decorators/WinDecorator/WinDecorator.h @@ -42,4 +42,4 @@ protected: int textoffset; }; -#endif \ No newline at end of file +#endif diff --git a/src/add-ons/decorators/WinDecorator/defs.h b/src/add-ons/decorators/WinDecorator/defs.h index 9b491d0719..2c0e3c9905 100644 --- a/src/add-ons/decorators/WinDecorator/defs.h +++ b/src/add-ons/decorators/WinDecorator/defs.h @@ -17,4 +17,4 @@ #define GET_DECORATOR 'gdec' #define SET_UI_COLORS 'suic' -#endif \ No newline at end of file +#endif