summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk/a11y
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/gtk/a11y')
-rw-r--r--vcl/unx/gtk/a11y/atklistener.hxx20
-rw-r--r--vcl/unx/gtk/a11y/atkregistry.hxx4
-rw-r--r--vcl/unx/gtk/a11y/atktext.cxx16
-rw-r--r--vcl/unx/gtk/a11y/atktextattributes.cxx2
-rw-r--r--vcl/unx/gtk/a11y/atktextattributes.hxx4
-rw-r--r--vcl/unx/gtk/a11y/atkwrapper.cxx2
-rw-r--r--vcl/unx/gtk/a11y/atkwrapper.hxx4
7 files changed, 26 insertions, 26 deletions
diff --git a/vcl/unx/gtk/a11y/atklistener.hxx b/vcl/unx/gtk/a11y/atklistener.hxx
index 20c194073cdb..a26e825a3b09 100644
--- a/vcl/unx/gtk/a11y/atklistener.hxx
+++ b/vcl/unx/gtk/a11y/atklistener.hxx
@@ -27,18 +27,18 @@
#include "atkwrapper.hxx"
-class AtkListener : public ::cppu::WeakImplHelper< ::com::sun::star::accessibility::XAccessibleEventListener >
+class AtkListener : public ::cppu::WeakImplHelper< css::accessibility::XAccessibleEventListener >
{
public:
explicit AtkListener(AtkObjectWrapper * pWrapper);
// XEventListener
- virtual void disposing( const ::com::sun::star::lang::EventObject& Source )
- throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void disposing( const css::lang::EventObject& Source )
+ throw (css::uno::RuntimeException, std::exception) override;
// XAccessibleEventListener
- virtual void notifyEvent( const ::com::sun::star::accessibility::AccessibleEventObject& aEvent )
- throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
+ virtual void notifyEvent( const css::accessibility::AccessibleEventObject& aEvent )
+ throw( css::uno::RuntimeException, std::exception ) override;
AtkObjectWrapper *mpWrapper;
std::vector< css::uno::Reference< css::accessibility::XAccessible > >
@@ -55,17 +55,17 @@ private:
// Process CHILD_EVENT notifications with a new child added
void handleChildAdded(
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >& rxParent,
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible>& rxChild);
+ const css::uno::Reference< css::accessibility::XAccessibleContext >& rxParent,
+ const css::uno::Reference< css::accessibility::XAccessible>& rxChild);
// Process CHILD_EVENT notifications with a child removed
void handleChildRemoved(
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >& rxParent,
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible>& rxChild);
+ const css::uno::Reference< css::accessibility::XAccessibleContext >& rxParent,
+ const css::uno::Reference< css::accessibility::XAccessible>& rxChild);
// Process INVALIDATE_ALL_CHILDREN notification
void handleInvalidateChildren(
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >& rxParent);
+ const css::uno::Reference< css::accessibility::XAccessibleContext >& rxParent);
};
#endif // INCLUDED_VCL_UNX_GTK_A11Y_ATKLISTENER_HXX
diff --git a/vcl/unx/gtk/a11y/atkregistry.hxx b/vcl/unx/gtk/a11y/atkregistry.hxx
index b25e449df474..b692290847d8 100644
--- a/vcl/unx/gtk/a11y/atkregistry.hxx
+++ b/vcl/unx/gtk/a11y/atkregistry.hxx
@@ -23,9 +23,9 @@
#include <com/sun/star/accessibility/XAccessible.hpp>
#include <atk/atk.h>
-AtkObject * ooo_wrapper_registry_get(const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible);
+AtkObject * ooo_wrapper_registry_get(const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible);
-void ooo_wrapper_registry_add(const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible, AtkObject *obj);
+void ooo_wrapper_registry_add(const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible, AtkObject *obj);
void ooo_wrapper_registry_remove(
css::uno::Reference<css::accessibility::XAccessible> const & pAccessible);
diff --git a/vcl/unx/gtk/a11y/atktext.cxx b/vcl/unx/gtk/a11y/atktext.cxx
index 28f2306fadf6..c38c43231d6f 100644
--- a/vcl/unx/gtk/a11y/atktext.cxx
+++ b/vcl/unx/gtk/a11y/atktext.cxx
@@ -435,22 +435,22 @@ handle_text_markup_as_run_attribute( css::uno::Reference<css::accessibility::XAc
nEndOffsetTextMarkup );
switch ( nTextMarkupType )
{
- case com::sun::star::text::TextMarkupType::SPELLCHECK:
+ case css::text::TextMarkupType::SPELLCHECK:
{
pSet = attribute_set_prepend_misspelled( pSet );
}
break;
- case com::sun::star::text::TextMarkupType::TRACK_CHANGE_INSERTION:
+ case css::text::TextMarkupType::TRACK_CHANGE_INSERTION:
{
pSet = attribute_set_prepend_tracked_change_insertion( pSet );
}
break;
- case com::sun::star::text::TextMarkupType::TRACK_CHANGE_DELETION:
+ case css::text::TextMarkupType::TRACK_CHANGE_DELETION:
{
pSet = attribute_set_prepend_tracked_change_deletion( pSet );
}
break;
- case com::sun::star::text::TextMarkupType::TRACK_CHANGE_FORMATCHANGE:
+ case css::text::TextMarkupType::TRACK_CHANGE_FORMATCHANGE:
{
pSet = attribute_set_prepend_tracked_change_formatchange( pSet );
}
@@ -535,20 +535,20 @@ text_wrapper_get_run_attributes( AtkText *text,
// handle misspelled text
pSet = handle_text_markup_as_run_attribute(
pTextMarkup,
- com::sun::star::text::TextMarkupType::SPELLCHECK,
+ css::text::TextMarkupType::SPELLCHECK,
offset, pSet, start_offset, end_offset );
// handle tracked changes
pSet = handle_text_markup_as_run_attribute(
pTextMarkup,
- com::sun::star::text::TextMarkupType::TRACK_CHANGE_INSERTION,
+ css::text::TextMarkupType::TRACK_CHANGE_INSERTION,
offset, pSet, start_offset, end_offset );
pSet = handle_text_markup_as_run_attribute(
pTextMarkup,
- com::sun::star::text::TextMarkupType::TRACK_CHANGE_DELETION,
+ css::text::TextMarkupType::TRACK_CHANGE_DELETION,
offset, pSet, start_offset, end_offset );
pSet = handle_text_markup_as_run_attribute(
pTextMarkup,
- com::sun::star::text::TextMarkupType::TRACK_CHANGE_FORMATCHANGE,
+ css::text::TextMarkupType::TRACK_CHANGE_FORMATCHANGE,
offset, pSet, start_offset, end_offset );
}
}
diff --git a/vcl/unx/gtk/a11y/atktextattributes.cxx b/vcl/unx/gtk/a11y/atktextattributes.cxx
index 37df30f099e2..6da4d349cac3 100644
--- a/vcl/unx/gtk/a11y/atktextattributes.cxx
+++ b/vcl/unx/gtk/a11y/atktextattributes.cxx
@@ -1023,7 +1023,7 @@ attr_compare(const void *p1,const void *p2)
static void
find_exported_attributes( sal_Int32 *pArray,
- const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rAttributeList )
+ const css::uno::Sequence< css::beans::PropertyValue >& rAttributeList )
{
for( sal_Int32 i = 0; i < rAttributeList.getLength(); i++ )
{
diff --git a/vcl/unx/gtk/a11y/atktextattributes.hxx b/vcl/unx/gtk/a11y/atktextattributes.hxx
index cc78e1a836ef..f86c82f4fe09 100644
--- a/vcl/unx/gtk/a11y/atktextattributes.hxx
+++ b/vcl/unx/gtk/a11y/atktextattributes.hxx
@@ -28,7 +28,7 @@
AtkAttributeSet*
attribute_set_new_from_property_values(
- const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rAttributeList,
+ const css::uno::Sequence< css::beans::PropertyValue >& rAttributeList,
bool run_attributes_only,
AtkText *text);
@@ -39,7 +39,7 @@ attribute_set_new_from_extended_attributes(
bool
attribute_set_map_to_property_values(
AtkAttributeSet* attribute_set,
- com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rValueList );
+ css::uno::Sequence< css::beans::PropertyValue >& rValueList );
AtkAttributeSet* attribute_set_prepend_misspelled( AtkAttributeSet* attribute_set );
// #i92232#
diff --git a/vcl/unx/gtk/a11y/atkwrapper.cxx b/vcl/unx/gtk/a11y/atkwrapper.cxx
index 2dad164d9706..2c3e78b8dd66 100644
--- a/vcl/unx/gtk/a11y/atkwrapper.cxx
+++ b/vcl/unx/gtk/a11y/atkwrapper.cxx
@@ -798,7 +798,7 @@ atk_object_wrapper_ref( const uno::Reference< accessibility::XAccessible > &rxAc
}
AtkObject *
-atk_object_wrapper_new( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible,
+atk_object_wrapper_new( const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible,
AtkObject* parent )
{
g_return_val_if_fail( rxAccessible.get() != nullptr, NULL );
diff --git a/vcl/unx/gtk/a11y/atkwrapper.hxx b/vcl/unx/gtk/a11y/atkwrapper.hxx
index 939071316692..4a023fa6e4b9 100644
--- a/vcl/unx/gtk/a11y/atkwrapper.hxx
+++ b/vcl/unx/gtk/a11y/atkwrapper.hxx
@@ -77,11 +77,11 @@ struct _AtkObjectWrapperClass
GType atk_object_wrapper_get_type() G_GNUC_CONST;
AtkObject * atk_object_wrapper_ref(
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible,
+ const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible,
bool create = true );
AtkObject * atk_object_wrapper_new(
- const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible,
+ const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible,
AtkObject* parent = nullptr );
void atk_object_wrapper_add_child(AtkObjectWrapper* wrapper, AtkObject *child, gint index);