diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 08:38:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-13 08:39:26 +0200 |
commit | 78a2020846b855ed925ab88f06fa70a282a75e5a (patch) | |
tree | dd316d41417704fc02387700f2b664b55945773b /vcl/unx | |
parent | 39c7532933bb4f1630e821a2a38b213eb05dcc59 (diff) |
vcl: prefer passing OUString and OString by reference
Change-Id: I6c2c6f597ca62c004ad7dc606cef3a3b10e810b6
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/app/keysymnames.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/gtk/a11y/atkimage.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/gtk/a11y/atktable.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/generic/app/keysymnames.cxx b/vcl/unx/generic/app/keysymnames.cxx index 50c53696acce..a2d411786c28 100644 --- a/vcl/unx/generic/app/keysymnames.cxx +++ b/vcl/unx/generic/app/keysymnames.cxx @@ -474,7 +474,7 @@ namespace vcl_sal { }; // translate keycodes, used within the displayed menu shortcuts - OUString getKeysymReplacementName( OUString pLang, KeySym nSymbol ) + OUString getKeysymReplacementName( const OUString& pLang, KeySym nSymbol ) { for( unsigned int n = 0; n < SAL_N_ELEMENTS(aKeyboards); n++ ) { diff --git a/vcl/unx/gtk/a11y/atkimage.cxx b/vcl/unx/gtk/a11y/atkimage.cxx index b413daae130d..d9f93edc4a9d 100644 --- a/vcl/unx/gtk/a11y/atkimage.cxx +++ b/vcl/unx/gtk/a11y/atkimage.cxx @@ -28,7 +28,7 @@ using namespace ::com::sun::star; // FIXME static G_CONST_RETURN gchar * -getAsConst( OUString rString ) +getAsConst( const OUString& rString ) { static const int nMax = 10; static OString aUgly[nMax]; diff --git a/vcl/unx/gtk/a11y/atktable.cxx b/vcl/unx/gtk/a11y/atktable.cxx index bf30e41eabdb..7094a7caf4b9 100644 --- a/vcl/unx/gtk/a11y/atktable.cxx +++ b/vcl/unx/gtk/a11y/atktable.cxx @@ -45,7 +45,7 @@ atk_object_wrapper_conditional_ref( const uno::Reference< accessibility::XAccess // FIXME static G_CONST_RETURN gchar * -getAsConst( OUString rString ) +getAsConst( const OUString& rString ) { static const int nMax = 10; static OString aUgly[nMax]; |