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
67467b93
Kaydet (Commit)
67467b93
authored
May 19, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: remove using namespace from headers
Change-Id: I57439b09e95bf385436501921ca8db1469758105
üst
1aae91fb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
28 deletions
+28
-28
X11_clipboard.hxx
vcl/unx/generic/dtrans/X11_clipboard.hxx
+26
-26
X11_dndcontext.hxx
vcl/unx/generic/dtrans/X11_dndcontext.hxx
+0
-2
X11_droptarget.cxx
vcl/unx/generic/dtrans/X11_droptarget.cxx
+1
-0
X11_selection.hxx
vcl/unx/generic/dtrans/X11_selection.hxx
+0
-0
X11_service.cxx
vcl/unx/generic/dtrans/X11_service.cxx
+1
-0
No files found.
vcl/unx/generic/dtrans/X11_clipboard.hxx
Dosyayı görüntüle @
67467b93
...
...
@@ -33,17 +33,17 @@ namespace x11 {
class
X11Clipboard
:
public
::
cppu
::
WeakComponentImplHelper2
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XSystemClipboard
,
::
com
::
sun
::
star
::
lang
::
XServiceInfo
css
::
datatransfer
::
clipboard
::
XSystemClipboard
,
css
::
lang
::
XServiceInfo
>
,
public
SelectionAdaptor
{
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
XTransferable
>
m_aContents
;
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboardOwner
>
m_aOwner
;
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
XTransferable
>
m_aContents
;
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
clipboard
::
XClipboardOwner
>
m_aOwner
;
SelectionManager
&
m_rSelectionManager
;
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XInitialization
>
m_xSelectionManager
;
::
std
::
list
<
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboardListener
>
>
m_aListeners
;
c
ss
::
uno
::
Reference
<
css
::
lang
::
XInitialization
>
m_xSelectionManager
;
::
std
::
list
<
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
clipboard
::
XClipboardListener
>
>
m_aListeners
;
Atom
m_aSelection
;
protected
:
...
...
@@ -65,59 +65,59 @@ namespace x11 {
*/
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
/*
* XClipboard
*/
virtual
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
XTransferable
>
SAL_CALL
getContents
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
XTransferable
>
SAL_CALL
getContents
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setContents
(
const
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
XTransferable
>&
xTrans
,
const
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboardOwner
>&
xClipboardOwner
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
const
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
XTransferable
>&
xTrans
,
const
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
clipboard
::
XClipboardOwner
>&
xClipboardOwner
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getName
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
/*
* XClipboardEx
*/
virtual
sal_Int8
SAL_CALL
getRenderingCapabilities
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
/*
* XClipboardNotifier
*/
virtual
void
SAL_CALL
addClipboardListener
(
const
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboardListener
>&
listener
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
const
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
clipboard
::
XClipboardListener
>&
listener
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
removeClipboardListener
(
const
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
clipboard
::
XClipboardListener
>&
listener
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
const
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
clipboard
::
XClipboardListener
>&
listener
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
/*
* SelectionAdaptor
*/
virtual
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
XTransferable
>
getTransferable
()
SAL_OVERRIDE
;
virtual
c
ss
::
uno
::
Reference
<
css
::
datatransfer
::
XTransferable
>
getTransferable
()
SAL_OVERRIDE
;
virtual
void
clearTransferable
()
SAL_OVERRIDE
;
virtual
void
fireContentsChanged
()
SAL_OVERRIDE
;
virtual
c
om
::
sun
::
star
::
uno
::
Reference
<
XInterface
>
getReference
()
throw
()
SAL_OVERRIDE
;
virtual
c
ss
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
getReference
()
throw
()
SAL_OVERRIDE
;
};
Sequence
<
OUString
>
SAL_CALL
X11Clipboard_getSupportedServiceNames
();
c
om
::
sun
::
star
::
uno
::
Reference
<
XInterface
>
SAL_CALL
X11Clipboard_createInstance
(
const
c
om
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
&
xMultiServiceFactory
);
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
X11Clipboard_getSupportedServiceNames
();
c
ss
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
SAL_CALL
X11Clipboard_createInstance
(
const
c
ss
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>
&
xMultiServiceFactory
);
}
// namepspace
...
...
vcl/unx/generic/dtrans/X11_dndcontext.hxx
Dosyayı görüntüle @
67467b93
...
...
@@ -29,8 +29,6 @@
#include <X11/Xlib.h>
#include <postx.h>
using
namespace
com
::
sun
::
star
::
uno
;
namespace
x11
{
class
SelectionManager
;
...
...
vcl/unx/generic/dtrans/X11_droptarget.cxx
Dosyayı görüntüle @
67467b93
...
...
@@ -21,6 +21,7 @@
#include <X11_selection.hxx>
using
namespace
x11
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
awt
;
using
namespace
com
::
sun
::
star
::
datatransfer
;
...
...
vcl/unx/generic/dtrans/X11_selection.hxx
Dosyayı görüntüle @
67467b93
This diff is collapsed.
Click to expand it.
vcl/unx/generic/dtrans/X11_service.cxx
Dosyayı görüntüle @
67467b93
...
...
@@ -29,6 +29,7 @@
#include <cppuhelper/compbase1.hxx>
using
namespace
cppu
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
datatransfer
::
clipboard
;
using
namespace
com
::
sun
::
star
::
awt
;
...
...
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