summaryrefslogtreecommitdiffstats
path: root/fpicker/source/office/fileview.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/office/fileview.hxx')
-rw-r--r--fpicker/source/office/fileview.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/fpicker/source/office/fileview.hxx b/fpicker/source/office/fileview.hxx
index d86ee93900e1..a19c2095507f 100644
--- a/fpicker/source/office/fileview.hxx
+++ b/fpicker/source/office/fileview.hxx
@@ -20,6 +20,7 @@
#include <memory>
#include <com/sun/star/uno/Sequence.h>
+#include <utility>
#include <vcl/weld.hxx>
#include <rtl/ustring.hxx>
@@ -81,8 +82,8 @@ public:
bool GetParentURL( OUString& _rParentURL ) const;
void CreatedFolder( const OUString& rUrl, const OUString& rNewFolder );
- void set_help_id(const OString& rHelpId);
- OString get_help_id() const;
+ void set_help_id(const OUString& rHelpId);
+ OUString get_help_id() const;
void grab_focus();
bool has_focus() const;
@@ -162,7 +163,7 @@ public:
// save and load column size and sort order
OUString GetConfigString() const;
- void SetConfigString( const OUString& rCfgStr );
+ void SetConfigString( std::u16string_view rCfgStr );
void EndInplaceEditing();
@@ -176,8 +177,8 @@ struct SvtContentEntry
bool mbIsFolder;
OUString maURL;
- SvtContentEntry( const OUString& rURL, bool bIsFolder ) :
- mbIsFolder( bIsFolder ), maURL( rURL ) {}
+ SvtContentEntry( OUString aURL, bool bIsFolder ) :
+ mbIsFolder( bIsFolder ), maURL(std::move( aURL )) {}
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */