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
ce1ac085
Kaydet (Commit)
ce1ac085
authored
May 10, 2012
tarafından
Andras Timar
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
error handling in SortTree custom action
Change-Id: I03a06d09e3e84b6cb13bd68e8be4caebb1b9f5ab
üst
0d79369e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
1 deletion
+31
-1
sorttree.cxx
setup_native/source/win32/customactions/sellang/sorttree.cxx
+31
-1
No files found.
setup_native/source/win32/customactions/sellang/sorttree.cxx
Dosyayı görüntüle @
ce1ac085
...
...
@@ -23,15 +23,45 @@ extern "C" UINT __stdcall SortTree(MSIHANDLE)
// Sort items (languages) in SelectionTree control, fdo#46355
HWND
hwndMSI
=
FindWindow
(
TEXT
(
"MsiDialogCloseClass"
),
NULL
);
if
(
hwndMSI
==
NULL
)
{
OutputDebugString
(
"SortTree: MsiDialogCloseClass not found
\n
"
);
return
ERROR_SUCCESS
;
}
HWND
hwndTV
=
FindWindowEx
(
hwndMSI
,
NULL
,
TEXT
(
"SysTreeView32"
),
NULL
);
if
(
hwndTV
==
NULL
)
{
OutputDebugString
(
"SortTree: SysTreeView32 not found
\n
"
);
return
ERROR_SUCCESS
;
}
HTREEITEM
treeRoot
=
TreeView_GetRoot
(
hwndTV
);
if
(
treeRoot
==
NULL
)
{
OutputDebugString
(
"SortTree: TreeView_GetRoot failed
\n
"
);
return
ERROR_SUCCESS
;
}
HTREEITEM
optional
=
TreeView_GetNextSibling
(
hwndTV
,
treeRoot
);
if
(
optional
==
NULL
)
{
OutputDebugString
(
"SortTree: Optional Components branch not found
\n
"
);
return
ERROR_SUCCESS
;
}
HTREEITEM
dicts
=
TreeView_GetChild
(
hwndTV
,
optional
);
if
(
dicts
==
NULL
)
{
OutputDebugString
(
"SortTree: Dictionaries branch not found
\n
"
);
return
ERROR_SUCCESS
;
}
TreeView_SortChildren
(
hwndTV
,
dicts
,
TRUE
);
HTREEITEM
langs
=
TreeView_GetNextSibling
(
hwndTV
,
optional
);
if
(
langs
==
NULL
)
{
OutputDebugString
(
"SortTree: Additional UI Languages branch not found
\n
"
);
return
ERROR_SUCCESS
;
}
TreeView_SortChildren
(
hwndTV
,
langs
,
TRUE
);
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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