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
4eb16dab
Kaydet (Commit)
4eb16dab
authored
May 13, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
wrap some static fields in VclPtr
Change-Id: I2df0929d1b34b9ebf2d5d4c27321abdea072007a
üst
6850e9b8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
19 deletions
+20
-19
scuitphfedit.cxx
sc/source/ui/pagedlg/scuitphfedit.cxx
+1
-1
tphfedit.cxx
sc/source/ui/pagedlg/tphfedit.cxx
+1
-1
viewsh.hxx
sw/inc/viewsh.hxx
+5
-5
viewsh.cxx
sw/source/core/view/viewsh.cxx
+1
-1
view.hxx
sw/source/uibase/inc/view.hxx
+8
-8
view.cxx
sw/source/uibase/uiview/view.cxx
+4
-3
No files found.
sc/source/ui/pagedlg/scuitphfedit.cxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -51,7 +51,7 @@
// STATIC DATA -----------------------------------------------------------
static
ScEditWindow
*
pActiveEdWnd
=
NULL
;
static
VclPtr
<
ScEditWindow
>
pActiveEdWnd
=
NULL
;
// class ScHFEditPage
...
...
sc/source/ui/pagedlg/tphfedit.cxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -48,7 +48,7 @@
#include <boost/scoped_ptr.hpp>
// STATIC DATA -----------------------------------------------------------
static
ScEditWindow
*
pActiveEdWnd
=
NULL
;
static
VclPtr
<
ScEditWindow
>
pActiveEdWnd
=
NULL
;
ScEditWindow
*
GetScEditWindow
()
{
...
...
sw/inc/viewsh.hxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -187,8 +187,8 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell>
SAL_DLLPRIVATE
void
ImplApplyViewOptions
(
const
SwViewOption
&
rOpt
);
protected
:
static
ShellResource
*
mpShellRes
;
///< Resources for the Shell.
static
vcl
::
Window
*
mpCareWindow
;
///< Avoid this window.
static
ShellResource
*
mpShellRes
;
///< Resources for the Shell.
static
VclPtr
<
vcl
::
Window
>
mpCareWindow
;
///< Avoid this window.
SwRect
maVisArea
;
///< The modern version of VisArea.
SwDoc
*
mpDoc
;
///< The document; never 0.
...
...
@@ -440,9 +440,9 @@ public:
static
ShellResource
*
GetShellRes
();
static
void
SetCareWin
(
vcl
::
Window
*
pNew
);
static
vcl
::
Window
*
GetCareWin
(
SwViewShell
&
rVSh
)
{
return
mpCareWindow
?
mpCareWindow
:
CareChildWin
(
rVSh
);
}
static
vcl
::
Window
*
CareChildWin
(
SwViewShell
&
rVSh
);
static
vcl
::
Window
*
GetCareWin
(
SwViewShell
&
rVSh
)
{
return
mpCareWindow
?
mpCareWindow
.
get
()
:
CareChildWin
(
rVSh
);
}
static
vcl
::
Window
*
CareChildWin
(
SwViewShell
&
rVSh
);
inline
SfxViewShell
*
GetSfxViewShell
()
{
return
mpSfxViewShell
;
}
inline
void
SetSfxViewShell
(
SfxViewShell
*
pNew
)
{
mpSfxViewShell
=
pNew
;
}
...
...
sw/source/core/view/viewsh.cxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -85,7 +85,7 @@
bool
SwViewShell
::
mbLstAct
=
false
;
ShellResource
*
SwViewShell
::
mpShellRes
=
0
;
vcl
::
Window
*
SwViewShell
::
mpCareWindow
=
0
;
VclPtr
<
vcl
::
Window
>
SwViewShell
::
mpCareWindow
=
nullptr
;
BitmapEx
*
SwViewShell
::
mpErrorBmp
=
NULL
;
BitmapEx
*
SwViewShell
::
mpReplaceBmp
=
NULL
;
...
...
sw/source/uibase/inc/view.hxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -153,14 +153,14 @@ class SW_DLLPUBLIC SwView: public SfxViewShell
friend
class
SwClipboardChangeListener
;
// search & replace
static
SvxSearchDialog
*
m_pSrchDlg
;
static
SvxSearchItem
*
m_pSrchItem
;
static
sal_uInt16
m_nInsertCtrlState
;
static
sal_uInt16
m_nWebInsertCtrlState
;
static
sal_uInt16
m_nInsertObjectCtrlState
;
static
sal_uInt16
m_nInsertFieldCtrlState
;
static
sal_uInt16
m_nMoveType
;
// for buttons below the scrollbar (viewmdi)
static
VclPtr
<
SvxSearchDialog
>
m_pSrchDlg
;
static
SvxSearchItem
*
m_pSrchItem
;
static
sal_uInt16
m_nInsertCtrlState
;
static
sal_uInt16
m_nWebInsertCtrlState
;
static
sal_uInt16
m_nInsertObjectCtrlState
;
static
sal_uInt16
m_nInsertFieldCtrlState
;
static
sal_uInt16
m_nMoveType
;
// for buttons below the scrollbar (viewmdi)
static
sal_Int32
m_nActMark
;
// current jump mark for unknown mark
static
bool
m_bExtra
;
...
...
sw/source/uibase/uiview/view.cxx
Dosyayı görüntüle @
4eb16dab
...
...
@@ -36,6 +36,7 @@
#include <sfx2/printer.hxx>
#include <sfx2/app.hxx>
#include <svx/ruler.hxx>
#include <svx/srchdlg.hxx>
#include <editeng/protitem.hxx>
#include <svx/fmshell.hxx>
#include <svx/extrusionbar.hxx>
...
...
@@ -135,9 +136,9 @@ bool SwView::m_bExtra = false;
bool
SwView
::
m_bFound
=
false
;
bool
SwView
::
m_bJustOpened
=
false
;
SvxSearchDialog
*
SwView
::
m_pSrchDlg
=
0
;
SearchAttrItemList
*
SwView
::
m_pSrchList
=
0
;
SearchAttrItemList
*
SwView
::
m_pReplList
=
0
;
VclPtr
<
SvxSearchDialog
>
SwView
::
m_pSrchDlg
=
nullptr
;
SearchAttrItemList
*
SwView
::
m_pSrchList
=
0
;
SearchAttrItemList
*
SwView
::
m_pReplList
=
0
;
inline
SfxDispatcher
&
SwView
::
GetDispatcher
()
{
...
...
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