As discussed here:
https://lists.berlios.de/pipermail/haiku-commits/2009-February/014198.html We decided on a distinction between path+filename and only the path to a file. I changed the places a user is exposed to the issue, using the definition: Path with filename: "Path" Path without filename: "Location" git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29130 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -3040,7 +3040,7 @@ BContainerWindow::NewAttributeMenu(BMenu *menu)
|
||||
menu->AddItem(NewAttributeMenuItem ("Original name", kAttrOriginalPath, B_STRING_TYPE,
|
||||
225, B_ALIGN_LEFT, false, false));
|
||||
else
|
||||
menu->AddItem(NewAttributeMenuItem ("Path", kAttrPath, B_STRING_TYPE,
|
||||
menu->AddItem(NewAttributeMenuItem ("Location", kAttrPath, B_STRING_TYPE,
|
||||
225, B_ALIGN_LEFT, false, false));
|
||||
|
||||
#ifdef OWNER_GROUP_ATTRIBUTES
|
||||
|
||||
@@ -1746,9 +1746,9 @@ AttributeView::Draw(BRect)
|
||||
GetFont(&normalFont);
|
||||
|
||||
// Path
|
||||
MovePenTo(BPoint(fDivider - (StringWidth("Path:")), lineBase));
|
||||
MovePenTo(BPoint(fDivider - (StringWidth("Location:")), lineBase));
|
||||
SetHighColor(kAttrTitleColor);
|
||||
DrawString("Path:");
|
||||
DrawString("Location:");
|
||||
|
||||
MovePenTo(BPoint(fDivider + kDrawMargin, lineBase));
|
||||
SetHighColor(kLinkColor);
|
||||
|
||||
@@ -761,7 +761,7 @@ OpenWithPoseView::SetUpDefaultColumnsIfNeeded()
|
||||
BColumn *relationColumn = new BColumn("Relation", 180, 100, B_ALIGN_LEFT,
|
||||
kAttrOpenWithRelation, B_STRING_TYPE, false, false);
|
||||
fColumnList->AddItem(relationColumn);
|
||||
fColumnList->AddItem(new BColumn("Path", 290, 225, B_ALIGN_LEFT,
|
||||
fColumnList->AddItem(new BColumn("Location", 290, 225, B_ALIGN_LEFT,
|
||||
kAttrPath, B_STRING_TYPE, true, false));
|
||||
fColumnList->AddItem(new BColumn("Version", 525, 70, B_ALIGN_LEFT,
|
||||
kAttrAppVersion, B_STRING_TYPE, false, false));
|
||||
|
||||
@@ -115,7 +115,7 @@ BQueryPoseView::SetUpDefaultColumnsIfNeeded()
|
||||
|
||||
fColumnList->AddItem(new BColumn("Name", kColumnStart, 145, B_ALIGN_LEFT,
|
||||
kAttrStatName, B_STRING_TYPE, true, true));
|
||||
fColumnList->AddItem(new BColumn("Path", 200, 225, B_ALIGN_LEFT,
|
||||
fColumnList->AddItem(new BColumn("Location", 200, 225, B_ALIGN_LEFT,
|
||||
kAttrPath, B_STRING_TYPE, true, false));
|
||||
fColumnList->AddItem(new BColumn("Size", 440, 80, B_ALIGN_RIGHT,
|
||||
kAttrStatSize, B_OFF_T_TYPE, true, false));
|
||||
|
||||
Reference in New Issue
Block a user