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
655397f5
Kaydet (Commit)
655397f5
authored
Ock 28, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
drop RID_SCDLG_INSCONT, etc. now
Change-Id: Iee2eaf89f662b61fc4ec32b353b13417ee6b2610
üst
eab105e9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
58 deletions
+10
-58
sc.hrc
sc/inc/sc.hrc
+0
-3
scabstdlg.hxx
sc/inc/scabstdlg.hxx
+0
-1
scdlgfact.cxx
sc/source/ui/attrdlg/scdlgfact.cxx
+2
-14
scdlgfact.hxx
sc/source/ui/attrdlg/scdlgfact.hxx
+0
-1
miscdlgs.hrc
sc/source/ui/inc/miscdlgs.hrc
+0
-27
cellsh1.cxx
sc/source/ui/view/cellsh1.cxx
+2
-3
pastespecial.ui
sc/uiconfig/scalc/ui/pastespecial.ui
+6
-9
No files found.
sc/inc/sc.hrc
Dosyayı görüntüle @
655397f5
...
@@ -1003,9 +1003,6 @@
...
@@ -1003,9 +1003,6 @@
#define RID_SCDLG_INSCELL (SC_DIALOGS_START + 12)
#define RID_SCDLG_INSCELL (SC_DIALOGS_START + 12)
#define RID_SCDLG_INSCONT (SC_DIALOGS_START + 14)
#define RID_SCDLG_SELENTRY (SC_DIALOGS_START + 18)
#define RID_SCDLG_SELENTRY (SC_DIALOGS_START + 18)
#define RID_SCDLG_AUTOFORMAT (SC_DIALOGS_START + 20)
#define RID_SCDLG_AUTOFORMAT (SC_DIALOGS_START + 20)
#define RID_SCDLG_NAMES (SC_DIALOGS_START + 22)
#define RID_SCDLG_NAMES (SC_DIALOGS_START + 22)
...
...
sc/inc/scabstdlg.hxx
Dosyayı görüntüle @
655397f5
...
@@ -383,7 +383,6 @@ public:
...
@@ -383,7 +383,6 @@ public:
sal_Bool
bDisallowCellMove
=
false
)
=
0
;
sal_Bool
bDisallowCellMove
=
false
)
=
0
;
virtual
AbstractScInsertContentsDlg
*
CreateScInsertContentsDlg
(
Window
*
pParent
,
virtual
AbstractScInsertContentsDlg
*
CreateScInsertContentsDlg
(
Window
*
pParent
,
int
nId
,
sal_uInt16
nCheckDefaults
=
0
,
sal_uInt16
nCheckDefaults
=
0
,
const
OUString
*
pStrTitle
=
NULL
)
=
0
;
const
OUString
*
pStrTitle
=
NULL
)
=
0
;
...
...
sc/source/ui/attrdlg/scdlgfact.cxx
Dosyayı görüntüle @
655397f5
...
@@ -788,23 +788,11 @@ AbstractScInsertCellDlg * ScAbstractDialogFactory_Impl::CreateScInsertCellDlg( W
...
@@ -788,23 +788,11 @@ AbstractScInsertCellDlg * ScAbstractDialogFactory_Impl::CreateScInsertCellDlg( W
}
}
AbstractScInsertContentsDlg
*
ScAbstractDialogFactory_Impl
::
CreateScInsertContentsDlg
(
Window
*
pParent
,
AbstractScInsertContentsDlg
*
ScAbstractDialogFactory_Impl
::
CreateScInsertContentsDlg
(
Window
*
pParent
,
int
nId
,
sal_uInt16
nCheckDefaults
,
sal_uInt16
nCheckDefaults
,
const
OUString
*
pStrTitle
)
const
OUString
*
pStrTitle
)
{
{
ScInsertContentsDlg
*
pDlg
=
NULL
;
ScInsertContentsDlg
*
pDlg
=
new
ScInsertContentsDlg
(
pParent
,
nCheckDefaults
,
pStrTitle
);
switch
(
nId
)
return
new
AbstractScInsertContentsDlg_Impl
(
pDlg
);
{
case
RID_SCDLG_INSCONT
:
pDlg
=
new
ScInsertContentsDlg
(
pParent
,
nCheckDefaults
,
pStrTitle
);
break
;
default
:
break
;
}
if
(
pDlg
)
return
new
AbstractScInsertContentsDlg_Impl
(
pDlg
);
return
0
;
}
}
AbstractScInsertTableDlg
*
ScAbstractDialogFactory_Impl
::
CreateScInsertTableDlg
(
Window
*
pParent
,
ScViewData
&
rViewData
,
AbstractScInsertTableDlg
*
ScAbstractDialogFactory_Impl
::
CreateScInsertTableDlg
(
Window
*
pParent
,
ScViewData
&
rViewData
,
...
...
sc/source/ui/attrdlg/scdlgfact.hxx
Dosyayı görüntüle @
655397f5
...
@@ -451,7 +451,6 @@ public:
...
@@ -451,7 +451,6 @@ public:
sal_Bool
bDisallowCellMove
=
false
);
sal_Bool
bDisallowCellMove
=
false
);
virtual
AbstractScInsertContentsDlg
*
CreateScInsertContentsDlg
(
Window
*
pParent
,
virtual
AbstractScInsertContentsDlg
*
CreateScInsertContentsDlg
(
Window
*
pParent
,
int
nId
,
sal_uInt16
nCheckDefaults
=
0
,
sal_uInt16
nCheckDefaults
=
0
,
const
OUString
*
pStrTitle
=
NULL
);
const
OUString
*
pStrTitle
=
NULL
);
...
...
sc/source/ui/inc/miscdlgs.hrc
Dosyayı görüntüle @
655397f5
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
*/
*/
#include "sc.hrc"
#include "sc.hrc"
// -> RID_SCDLG_INSCONT
// -> RID_SCDLG_MOVETAB
// -> RID_SCDLG_MOVETAB
// -> RID_SCDLG_SELENTRY
// -> RID_SCDLG_SELENTRY
// -> RID_SCDLG_FILLSERIES
// -> RID_SCDLG_FILLSERIES
...
@@ -36,32 +35,6 @@
...
@@ -36,32 +35,6 @@
#define STR_BTN_CLOSE 200
#define STR_BTN_CLOSE 200
// Insert Contents Dialog
#define BTN_INSALL 20
#define BTN_INSSTRINGS 21
#define BTN_INSNUMBERS 22
#define BTN_INSDATETIME 23
#define BTN_INSFORMULAS 24
#define BTN_INSATTRS 25
#define BTN_INSNOTES 26
#define BTN_OP_NOOP 27
#define BTN_OP_ADD 28
#define BTN_OP_SUB 29
#define BTN_OP_MUL 30
#define BTN_OP_DIV 31
#define FL_OPERATION 32
#define BTN_SKIP_EMPTY 33
#define BTN_TRANSPOSE 34
#define BTN_LINK 35
#define FL_OPTIONS 36
#define BTN_MV_NONE 37
#define BTN_MV_DOWN 38
#define BTN_MV_RIGHT 39
#define FL_MOVE 40
#define BTN_INSOBJECTS 41
#define FL_SEP1 51
#define FL_SEP2 52
// String input
// String input
#define ED_INPUT 10
#define ED_INPUT 10
...
...
sc/source/ui/view/cellsh1.cxx
Dosyayı görüntüle @
655397f5
...
@@ -470,7 +470,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq )
...
@@ -470,7 +470,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq )
OSL_ENSURE
(
pFact
,
"ScAbstractFactory create fail!"
);
OSL_ENSURE
(
pFact
,
"ScAbstractFactory create fail!"
);
AbstractScInsertContentsDlg
*
pDlg
=
pFact
->
CreateScInsertContentsDlg
(
pTabViewShell
->
GetDialogParent
(),
AbstractScInsertContentsDlg
*
pDlg
=
pFact
->
CreateScInsertContentsDlg
(
pTabViewShell
->
GetDialogParent
(),
RID_SCDLG_INSCONT
,
0
,
/* nCheckDefaults */
0
,
/* nCheckDefaults */
&
ScGlobal
::
GetRscString
(
STR_FILL_TAB
));
&
ScGlobal
::
GetRscString
(
STR_FILL_TAB
));
OSL_ENSURE
(
pDlg
,
"Dialog create fail!"
);
OSL_ENSURE
(
pDlg
,
"Dialog create fail!"
);
pDlg
->
SetFillMode
(
true
);
pDlg
->
SetFillMode
(
true
);
...
@@ -1333,8 +1333,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq )
...
@@ -1333,8 +1333,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq )
ScAbstractDialogFactory
*
pFact
=
ScAbstractDialogFactory
::
Create
();
ScAbstractDialogFactory
*
pFact
=
ScAbstractDialogFactory
::
Create
();
OSL_ENSURE
(
pFact
,
"ScAbstractFactory create fail!"
);
OSL_ENSURE
(
pFact
,
"ScAbstractFactory create fail!"
);
AbstractScInsertContentsDlg
*
pDlg
=
pFact
->
CreateScInsertContentsDlg
(
pTabViewShell
->
GetDialogParent
(),
AbstractScInsertContentsDlg
*
pDlg
=
pFact
->
CreateScInsertContentsDlg
(
pTabViewShell
->
GetDialogParent
());
RID_SCDLG_INSCONT
);
OSL_ENSURE
(
pDlg
,
"Dialog create fail!"
);
OSL_ENSURE
(
pDlg
,
"Dialog create fail!"
);
pDlg
->
SetOtherDoc
(
bOtherDoc
);
pDlg
->
SetOtherDoc
(
bOtherDoc
);
// if ChangeTrack MoveMode disable
// if ChangeTrack MoveMode disable
...
...
sc/uiconfig/scalc/ui/pastespecial.ui
Dosyayı görüntüle @
655397f5
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.16.0 on Tue Jan 28 13:14:40 2014 -->
<interface>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<!-- interface-requires gtk+ 3.0 -->
<object
class=
"GtkDialog"
id=
"PasteSpecial"
>
<object
class=
"GtkDialog"
id=
"PasteSpecial"
>
...
@@ -70,7 +71,7 @@
...
@@ -70,7 +71,7 @@
<object
class=
"GtkGrid"
id=
"grid1"
>
<object
class=
"GtkGrid"
id=
"grid1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"row_spacing"
>
6
</property>
<property
name=
"row_spacing"
>
12
</property>
<property
name=
"column_spacing"
>
12
</property>
<property
name=
"column_spacing"
>
12
</property>
<child>
<child>
<object
class=
"GtkFrame"
id=
"frame1"
>
<object
class=
"GtkFrame"
id=
"frame1"
>
...
@@ -84,8 +85,8 @@
...
@@ -84,8 +85,8 @@
<object
class=
"GtkAlignment"
id=
"alignment1"
>
<object
class=
"GtkAlignment"
id=
"alignment1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"left_padding"
>
12
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"left_padding"
>
12
</property>
<child>
<child>
<object
class=
"GtkBox"
id=
"box1"
>
<object
class=
"GtkBox"
id=
"box1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
...
@@ -254,8 +255,8 @@
...
@@ -254,8 +255,8 @@
<object
class=
"GtkAlignment"
id=
"alignment2"
>
<object
class=
"GtkAlignment"
id=
"alignment2"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"left_padding"
>
12
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"left_padding"
>
12
</property>
<child>
<child>
<object
class=
"GtkBox"
id=
"box4"
>
<object
class=
"GtkBox"
id=
"box4"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
...
@@ -386,8 +387,8 @@
...
@@ -386,8 +387,8 @@
<object
class=
"GtkAlignment"
id=
"alignment3"
>
<object
class=
"GtkAlignment"
id=
"alignment3"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"left_padding"
>
12
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"left_padding"
>
12
</property>
<child>
<child>
<object
class=
"GtkBox"
id=
"box3"
>
<object
class=
"GtkBox"
id=
"box3"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
...
@@ -401,7 +402,6 @@
...
@@ -401,7 +402,6 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"use_action_appearance"
>
False
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"draw_indicator"
>
True
</property>
<property
name=
"draw_indicator"
>
True
</property>
...
@@ -419,7 +419,6 @@
...
@@ -419,7 +419,6 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"use_action_appearance"
>
False
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"draw_indicator"
>
True
</property>
<property
name=
"draw_indicator"
>
True
</property>
...
@@ -437,7 +436,6 @@
...
@@ -437,7 +436,6 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"use_action_appearance"
>
False
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"draw_indicator"
>
True
</property>
<property
name=
"draw_indicator"
>
True
</property>
...
@@ -482,8 +480,8 @@
...
@@ -482,8 +480,8 @@
<object
class=
"GtkAlignment"
id=
"alignment4"
>
<object
class=
"GtkAlignment"
id=
"alignment4"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"left_padding"
>
12
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"top_padding"
>
6
</property>
<property
name=
"left_padding"
>
12
</property>
<child>
<child>
<object
class=
"GtkBox"
id=
"box2"
>
<object
class=
"GtkBox"
id=
"box2"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
...
@@ -533,7 +531,6 @@
...
@@ -533,7 +531,6 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"use_action_appearance"
>
False
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"active"
>
True
</property>
<property
name=
"active"
>
True
</property>
...
...
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