[haiku-commits] haiku: hrev49211 - src/kits/tracker build/jam/repositories/HaikuPorts

  • From: jessica.l.hamilton@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 30 May 2015 04:04:02 +0200 (CEST)

hrev49211 adds 2 changesets to branch 'master'
old head: 7b897448a9125641b3abaf1551aef74a9d8f95c7
new head: bcf6650e4fb29187bf4d2e2694f6bac546567d4f
overview:
http://cgit.haiku-os.org/haiku/log/?qt=range&q=bcf6650e4fb2+%5E7b897448a912

----------------------------------------------------------------------------

89486c927648: FilePanel: re-parenting the PoseView to get shortcuts to work

bcf6650e4fb2: libxml2_x86: update to fix use of xml catalogs

* Now correctly searches /boot/system/data/xml/catalog for
files containing xml catalogs
* This fixes use of docbook stylesheets with xsltproc

[ Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx> ]

----------------------------------------------------------------------------

2 files changed, 5 insertions(+), 3 deletions(-)
build/jam/repositories/HaikuPorts/x86_gcc2 | 4 ++--
src/kits/tracker/FilePanelPriv.cpp | 4 +++-

############################################################################

Commit: 89486c92764891b1142243547d8e97fdc866c4f1
URL: http://cgit.haiku-os.org/haiku/commit/?id=89486c927648
Author: Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx>
Date: Tue May 26 22:17:04 2015 UTC

FilePanel: re-parenting the PoseView to get shortcuts to work

----------------------------------------------------------------------------

diff --git a/src/kits/tracker/FilePanelPriv.cpp
b/src/kits/tracker/FilePanelPriv.cpp
index de0469f..1082625 100644
--- a/src/kits/tracker/FilePanelPriv.cpp
+++ b/src/kits/tracker/FilePanelPriv.cpp
@@ -233,7 +233,6 @@ TFilePanel::TFilePanel(file_panel_mode mode, BMessenger*
target,
AutoLock<BWindow> lock(this);
fBorderedView = new BorderedView;
CreatePoseView(model);
- fBorderedView->GroupLayout()->SetInsets(1);
fPoseView->SetRefFilter(filter);
if (!fIsSavePanel)
fPoseView->SetMultipleSelection(multipleSelection);
@@ -752,6 +751,9 @@ TFilePanel::Init(const BMessage*)
PoseView()->VScrollBar()->SetResizingMode(B_FOLLOW_TOP_BOTTOM |
B_FOLLOW_RIGHT);
fBackView->AddChild(PoseView()->VScrollBar());

+ // re-parent the poseview to our bordered view
+ PoseView()->RemoveSelf();
+ fBorderedView->AddChild(PoseView());
if (fIsSavePanel)
fBackView->AddChild(fBorderedView, fTextControl);
else

############################################################################

Revision: hrev49211
Commit: bcf6650e4fb29187bf4d2e2694f6bac546567d4f
URL: http://cgit.haiku-os.org/haiku/commit/?id=bcf6650e4fb2
Author: Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx>
Date: Sat May 30 01:40:53 2015 UTC

libxml2_x86: update to fix use of xml catalogs

* Now correctly searches /boot/system/data/xml/catalog for
files containing xml catalogs
* This fixes use of docbook stylesheets with xsltproc

----------------------------------------------------------------------------

diff --git a/build/jam/repositories/HaikuPorts/x86_gcc2
b/build/jam/repositories/HaikuPorts/x86_gcc2
index be339d2..f7c4db9 100644
--- a/build/jam/repositories/HaikuPorts/x86_gcc2
+++ b/build/jam/repositories/HaikuPorts/x86_gcc2
@@ -687,8 +687,8 @@ RemotePackageRepository HaikuPorts
libvpx_x86_devel-1.0.0-2
libwebp_x86-0.4.1-1
libwebp_x86_devel-0.4.1-1
- libxml2_x86-2.9.1-1
- libxml2_x86_devel-2.9.1-1
+ libxml2_x86-2.9.2-1
+ libxml2_x86_devel-2.9.2-1
libxslt_x86-1.1.28-2
libxslt_x86_devel-1.1.28-2
llvm_x86-3.5.2-1


Other related posts:

  • » [haiku-commits] haiku: hrev49211 - src/kits/tracker build/jam/repositories/HaikuPorts - jessica . l . hamilton