Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
564f2e4f
Kaydet (Commit)
564f2e4f
authored
Agu 05, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert vcl/unohelp2.hxx from String to OUString
Change-Id: I9e0d4d68135ee740af1239d7070dbb4329dda866
üst
6549516e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
unohelp2.hxx
include/vcl/unohelp2.hxx
+4
-4
unohelp2.cxx
vcl/source/app/unohelp2.cxx
+2
-2
No files found.
include/vcl/unohelp2.hxx
Dosyayı görüntüle @
564f2e4f
...
@@ -37,13 +37,13 @@ namespace vcl { namespace unohelper {
...
@@ -37,13 +37,13 @@ namespace vcl { namespace unohelper {
public
::
cppu
::
OWeakObject
public
::
cppu
::
OWeakObject
{
{
private
:
private
:
String
maText
;
OUString
maText
;
public
:
public
:
TextDataObject
(
const
String
&
rText
);
TextDataObject
(
const
OU
String
&
rText
);
~
TextDataObject
();
~
TextDataObject
();
String
&
GetString
()
{
return
maText
;
}
OUString
&
GetString
()
{
return
maText
;
}
// ::com::sun::star::uno::XInterface
// ::com::sun::star::uno::XInterface
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
queryInterface
(
const
::
com
::
sun
::
star
::
uno
::
Type
&
rType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
queryInterface
(
const
::
com
::
sun
::
star
::
uno
::
Type
&
rType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
@@ -57,7 +57,7 @@ namespace vcl { namespace unohelper {
...
@@ -57,7 +57,7 @@ namespace vcl { namespace unohelper {
/// copies a given string to a given clipboard
/// copies a given string to a given clipboard
static
void
CopyStringTo
(
static
void
CopyStringTo
(
const
String
&
rContent
,
const
OU
String
&
rContent
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboard
>&
rxClipboard
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboard
>&
rxClipboard
);
);
};
};
...
...
vcl/source/app/unohelp2.cxx
Dosyayı görüntüle @
564f2e4f
...
@@ -30,7 +30,7 @@ using namespace ::com::sun::star;
...
@@ -30,7 +30,7 @@ using namespace ::com::sun::star;
namespace
vcl
{
namespace
unohelper
{
namespace
vcl
{
namespace
unohelper
{
TextDataObject
::
TextDataObject
(
const
String
&
rText
)
:
maText
(
rText
)
TextDataObject
::
TextDataObject
(
const
OU
String
&
rText
)
:
maText
(
rText
)
{
{
}
}
...
@@ -38,7 +38,7 @@ namespace vcl { namespace unohelper {
...
@@ -38,7 +38,7 @@ namespace vcl { namespace unohelper {
{
{
}
}
void
TextDataObject
::
CopyStringTo
(
const
String
&
rContent
,
void
TextDataObject
::
CopyStringTo
(
const
OU
String
&
rContent
,
const
uno
::
Reference
<
datatransfer
::
clipboard
::
XClipboard
>&
rxClipboard
)
const
uno
::
Reference
<
datatransfer
::
clipboard
::
XClipboard
>&
rxClipboard
)
{
{
DBG_ASSERT
(
rxClipboard
.
is
(),
"TextDataObject::CopyStringTo: invalid clipboard!"
);
DBG_ASSERT
(
rxClipboard
.
is
(),
"TextDataObject::CopyStringTo: invalid clipboard!"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment