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
3b2efb20
Kaydet (Commit)
3b2efb20
authored
Mar 02, 2011
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove "using namespace ::rtl"
üst
13b48727
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
9 deletions
+19
-9
TestCppComponent.cxx
...elopersGuide/Components/CppComponent/TestCppComponent.cxx
+3
-2
filterdetect.cxx
...FilterDevelopment/FlatXmlFilterDetection/filterdetect.cxx
+3
-1
office_connect.cxx
...les/DevelopersGuide/ProfUNO/CppBinding/office_connect.cxx
+3
-1
SimpleBootstrap_cpp.cxx
...Guide/ProfUNO/SimpleBootstrap_cpp/SimpleBootstrap_cpp.cxx
+2
-1
DocumentLoader.cxx
odk/examples/cpp/DocumentLoader/DocumentLoader.cxx
+2
-2
SourceCodeGenerator.java
odk/examples/java/Inspector/SourceCodeGenerator.java
+1
-1
typeblob.cxx
unodevtools/source/unodevtools/typeblob.cxx
+5
-1
No files found.
odk/examples/DevelopersGuide/Components/CppComponent/TestCppComponent.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -41,12 +41,13 @@
#include <my_module/MyService1.hpp>
#include <my_module/MyService2.hpp>
using
namespace
rtl
;
using
namespace
com
::
sun
::
star
::
uno
;
//namespace cssuno = ::com::sun::star::uno;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
frame
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OUStringToOString
;
SAL_IMPLEMENT_MAIN
()
{
try
...
...
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/filterdetect.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -58,7 +58,6 @@
#include <com/sun/star/beans/XPropertySet.hpp>
using
namespace
rtl
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
document
;
using
namespace
com
::
sun
::
star
::
lang
;
...
...
@@ -71,6 +70,9 @@ using namespace com::sun::star::frame;
using
namespace
com
::
sun
::
star
::
container
;
using
namespace
com
::
sun
::
star
::
ucb
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OString
;
OUString
SAL_CALL
FilterDetect
::
detect
(
Sequence
<
PropertyValue
>&
aArguments
)
throw
(
RuntimeException
)
...
...
odk/examples/DevelopersGuide/ProfUNO/CppBinding/office_connect.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -45,9 +45,11 @@
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
bridge
;
using
namespace
rtl
;
using
namespace
cppu
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OUStringToOString
;
SAL_IMPLEMENT_MAIN
()
{
// create the initial component context
...
...
odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_cpp/SimpleBootstrap_cpp.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -41,11 +41,12 @@
#include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
using
namespace
rtl
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
frame
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OUStringToOString
;
SAL_IMPLEMENT_MAIN_WITH_ARGS
(
argc
,
argv
)
{
...
...
odk/examples/cpp/DocumentLoader/DocumentLoader.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -58,7 +58,6 @@
#include <string.h>
using
namespace
rtl
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
beans
;
...
...
@@ -66,7 +65,8 @@ using namespace com::sun::star::bridge;
using
namespace
com
::
sun
::
star
::
frame
;
using
namespace
com
::
sun
::
star
::
registry
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OUStringToOString
;
//============================================================================
SAL_IMPLEMENT_MAIN_WITH_ARGS
(
argc
,
argv
)
...
...
odk/examples/java/Inspector/SourceCodeGenerator.java
Dosyayı görüntüle @
3b2efb20
...
...
@@ -1470,7 +1470,7 @@ class UnoObjectDefinition{
public
String
getFinalHeaderStatements
(){
String
sReturn
=
""
;
sReturn
+=
"\nnamespace "
+
getCSSNameSpaceString
()
+
" = com::sun::star;\n"
;
sReturn
+=
"using
namespace rtl
;\n"
;
sReturn
+=
"using
::rtl::OUString
;\n"
;
return
sReturn
;
}
...
...
unodevtools/source/unodevtools/typeblob.cxx
Dosyayı görüntüle @
3b2efb20
...
...
@@ -52,9 +52,13 @@ using namespace com::sun::star::uno;
using
namespace
com
::
sun
::
star
::
beans
;
using
namespace
com
::
sun
::
star
::
container
;
using
namespace
com
::
sun
::
star
::
reflection
;
using
namespace
rtl
;
using
namespace
codemaker
;
using
::
rtl
::
OUString
;
using
::
rtl
::
OString
;
using
::
rtl
::
OStringToOUString
;
using
::
rtl
::
OUStringToOString
;
namespace
unodevtools
{
void
writeConstantData
(
typereg
::
Writer
&
rWriter
,
sal_uInt16
fieldIndex
,
...
...
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