summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk/a11y/atktextattributes.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/gtk/a11y/atktextattributes.cxx')
-rw-r--r--vcl/unx/gtk/a11y/atktextattributes.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/unx/gtk/a11y/atktextattributes.cxx b/vcl/unx/gtk/a11y/atktextattributes.cxx
index 54e8f8f0a542..0d7cdc0e7785 100644
--- a/vcl/unx/gtk/a11y/atktextattributes.cxx
+++ b/vcl/unx/gtk/a11y/atktextattributes.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "atktextattributes.hxx"
#include <com/sun/star/awt/FontSlant.hpp>
@@ -50,7 +49,6 @@ typedef bool (* TextPropertyValueFunc) ( uno::Any& rAny, const gchar * value )
#define STRNCMP_PARAM( s ) s,sizeof( s )-1
-
/*****************************************************************************/
static AtkTextAttribute atk_text_attribute_paragraph_style = ATK_TEXT_ATTR_INVALID;
@@ -147,7 +145,6 @@ static const char * ExportedTextAttributes[TEXT_ATTRIBUTE_LAST] =
"WritingMode" // TEXT_ATTRIBUTE_WRITING_MODE
};
-
/*****************************************************************************/
static gchar*
@@ -180,7 +177,6 @@ double toPoint(sal_Int16 n)
return (double) (n * 72) / 2540;
}
-
/*****************************************************************************/
static bool
@@ -380,7 +376,6 @@ String2Weight( uno::Any& rAny, const gchar * value )
return true;
}
-
/*****************************************************************************/
static gchar*
@@ -770,7 +765,6 @@ get_font_effect(const uno::Sequence< beans::PropertyValue >& rAttributeList,
// @see http://www.w3.org/TR/REC-CSS2/text.html#lining-striking-props
-
enum
{
DECORATION_NONE = 0,
@@ -779,7 +773,6 @@ enum
DECORATION_LINE_THROUGH
};
-
static const gchar * decorations[] = { "none", "blink", "underline", "line-through" };
static gchar *
@@ -818,7 +811,6 @@ get_text_decoration(const uno::Sequence< beans::PropertyValue >& rAttributeList,
return g_strjoinv(" ", value_list);
}
-
/*****************************************************************************/
// @see http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-shadow
@@ -1219,7 +1211,6 @@ attribute_set_new_from_property_values(
return attribute_set;
}
-
AtkAttributeSet* attribute_set_prepend_misspelled( AtkAttributeSet* attribute_set )
{
if( ATK_TEXT_ATTR_INVALID == atk_text_attribute_misspelled )