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
c3164e42
Kaydet (Commit)
c3164e42
authored
Agu 20, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: rhbz#998046 store last size/position of the table/query/form
Change-Id: I3623d5e133b8d7b2e7920824b05c46ade7b10d7c
üst
2d2337eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
documentdefinition.cxx
dbaccess/source/core/dataaccess/documentdefinition.cxx
+1
-0
databaseobjectview.cxx
dbaccess/source/ui/misc/databaseobjectview.cxx
+5
-1
No files found.
dbaccess/source/core/dataaccess/documentdefinition.cxx
Dosyayı görüntüle @
c3164e42
...
...
@@ -1548,6 +1548,7 @@ Sequence< PropertyValue > ODocumentDefinition::fillLoadArgs( const Reference< XC
// create the OutplaceFrameProperties, and put them into the descriptor of the embedded object
::
comphelper
::
NamedValueCollection
OutplaceFrameProperties
;
OutplaceFrameProperties
.
put
(
"TopWindow"
,
(
sal_Bool
)
sal_True
);
OutplaceFrameProperties
.
put
(
"SupportPersistentWindowState"
,
(
sal_Bool
)
sal_True
);
Reference
<
XFrame
>
xParentFrame
;
if
(
m_pImpl
->
m_pDataSource
)
...
...
dbaccess/source/ui/misc/databaseobjectview.cxx
Dosyayı görüntüle @
c3164e42
...
...
@@ -120,7 +120,7 @@ namespace dbaui
if
(
!
m_xFrameLoader
.
is
()
)
{
Reference
<
XSingleServiceFactory
>
xFact
=
TaskCreator
::
create
(
m_xORB
);
Sequence
<
Any
>
lArgs
(
2
);
Sequence
<
Any
>
lArgs
(
3
);
NamedValue
aProp
;
sal_Int32
nArg
=
0
;
...
...
@@ -132,6 +132,10 @@ namespace dbaui
aProp
.
Value
<<=
sal_True
;
lArgs
[
nArg
++
]
<<=
aProp
;
aProp
.
Name
=
OUString
(
"SupportPersistentWindowState"
);
aProp
.
Value
<<=
sal_True
;
lArgs
[
nArg
++
]
<<=
aProp
;
m_xFrameLoader
.
set
(
xFact
->
createInstanceWithArguments
(
lArgs
),
UNO_QUERY_THROW
);
// everything we load can be considered a "top level document", so set the respective bit at the window.
...
...
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