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
7b34748b
Kaydet (Commit)
7b34748b
authored
Eki 07, 2012
tarafından
Ricardo Montania
Kaydeden (comit)
Muthu Subramanian
Eki 09, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some OUString and RTL_CONST refactoring
Change-Id: I27709f12ef6e3448ed457bd0e9f2056979ba0291
üst
9c6c53db
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
brkdlg.cxx
basctl/source/basicide/brkdlg.cxx
+2
-2
macrodlg.cxx
basctl/source/basicide/macrodlg.cxx
+5
-5
moduldl2.cxx
basctl/source/basicide/moduldl2.cxx
+0
-0
No files found.
basctl/source/basicide/brkdlg.cxx
Dosyayı görüntüle @
7b34748b
...
...
@@ -82,7 +82,7 @@ BreakPointDialog::BreakPointDialog( Window* pParent, BreakPointList& rBrkPntList
for
(
size_t
i
=
0
,
n
=
m_aModifiedBreakPointList
.
size
();
i
<
n
;
++
i
)
{
BreakPoint
*
pBrk
=
m_aModifiedBreakPointList
.
at
(
i
);
String
aEntryStr
(
"# "
);
OU
String
aEntryStr
(
"# "
);
aEntryStr
+=
String
::
CreateFromInt32
(
pBrk
->
nLine
);
aComboBox
.
InsertEntry
(
aEntryStr
,
COMBOBOX_APPEND
);
}
...
...
@@ -200,7 +200,7 @@ IMPL_LINK( BreakPointDialog, ButtonHdl, Button *, pButton )
pBrk
->
bEnabled
=
aCheckBox
.
IsChecked
();
pBrk
->
nStopAfter
=
(
size_t
)
aNumericField
.
GetValue
();
m_aModifiedBreakPointList
.
InsertSorted
(
pBrk
);
String
aEntryStr
(
"# "
);
OU
String
aEntryStr
(
"# "
);
aEntryStr
+=
String
::
CreateFromInt32
(
pBrk
->
nLine
);
aComboBox
.
InsertEntry
(
aEntryStr
,
COMBOBOX_APPEND
);
if
(
SfxDispatcher
*
pDispatcher
=
GetDispatcher
())
...
...
basctl/source/basicide/macrodlg.cxx
Dosyayı görüntüle @
7b34748b
...
...
@@ -303,7 +303,7 @@ void MacroChooser::DeleteMacro()
SbModule
*
pModule
=
pMethod
->
GetModule
();
DBG_ASSERT
(
pModule
,
"DeleteMacro: Kein Modul?!"
);
::
rtl
::
OUString
aSource
(
pModule
->
GetSource32
()
);
OUString
aSource
(
pModule
->
GetSource32
()
);
sal_uInt16
nStart
,
nEnd
;
pMethod
->
GetLineRange
(
nStart
,
nEnd
);
pModule
->
GetMethods
()
->
Remove
(
pMethod
);
...
...
@@ -335,11 +335,11 @@ SbMethod* MacroChooser::CreateMacro()
String
aLibName
(
aDesc
.
GetLibName
()
);
if
(
!
aLibName
.
Len
()
)
aLibName
=
rtl
::
OUString
(
"Standard"
)
;
aLibName
=
"Standard"
;
aDocument
.
getOrCreateLibrary
(
E_SCRIPTS
,
aLibName
);
::
rtl
::
OUString
aOULibName
(
aLibName
);
OUString
aOULibName
(
aLibName
);
Reference
<
script
::
XLibraryContainer
>
xModLibContainer
(
aDocument
.
getLibraryContainer
(
E_SCRIPTS
)
);
if
(
xModLibContainer
.
is
()
&&
xModLibContainer
->
hasByName
(
aOULibName
)
&&
!
xModLibContainer
->
isLibraryLoaded
(
aOULibName
)
)
xModLibContainer
->
loadLibrary
(
aOULibName
);
...
...
@@ -405,7 +405,7 @@ void MacroChooser::CheckButtons()
if
(
nDepth
==
1
||
nDepth
==
2
)
{
ScriptDocument
aDocument
(
aDesc
.
GetDocument
()
);
::
rtl
::
OUString
aOULibName
(
aDesc
.
GetLibName
()
);
OUString
aOULibName
(
aDesc
.
GetLibName
()
);
Reference
<
script
::
XLibraryContainer2
>
xModLibContainer
(
aDocument
.
getLibraryContainer
(
E_SCRIPTS
),
UNO_QUERY
);
Reference
<
script
::
XLibraryContainer2
>
xDlgLibContainer
(
aDocument
.
getLibraryContainer
(
E_DIALOGS
),
UNO_QUERY
);
if
(
(
xModLibContainer
.
is
()
&&
xModLibContainer
->
hasByName
(
aOULibName
)
&&
xModLibContainer
->
isLibraryReadOnly
(
aOULibName
)
)
||
...
...
@@ -504,7 +504,7 @@ IMPL_LINK( MacroChooser, BasicSelectHdl, SvTreeListBox *, pBox )
if
(
pModule
)
{
String
aStr
=
aMacrosInTxtBaseStr
;
aStr
+=
rtl
::
OUString
(
" "
)
;
aStr
+=
" "
;
aStr
+=
pModule
->
GetName
();
aMacrosInTxt
.
SetText
(
aStr
);
...
...
basctl/source/basicide/moduldl2.cxx
Dosyayı görüntüle @
7b34748b
This diff is collapsed.
Click to expand it.
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