mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
Issue #1925 - Remove use of NS_SIDE_* macros.
This commit is contained in:
parent
e6e2796541
commit
ec7351a5d4
30 changed files with 322 additions and 328 deletions
|
|
@ -23,10 +23,10 @@ using namespace mozilla;
|
|||
|
||||
nsBoxLayout* nsStackLayout::gInstance = nullptr;
|
||||
|
||||
#define SPECIFIED_LEFT (1 << NS_SIDE_LEFT)
|
||||
#define SPECIFIED_RIGHT (1 << NS_SIDE_RIGHT)
|
||||
#define SPECIFIED_TOP (1 << NS_SIDE_TOP)
|
||||
#define SPECIFIED_BOTTOM (1 << NS_SIDE_BOTTOM)
|
||||
#define SPECIFIED_LEFT (1 << eSideLeft)
|
||||
#define SPECIFIED_RIGHT (1 << eSideRight)
|
||||
#define SPECIFIED_TOP (1 << eSideTop)
|
||||
#define SPECIFIED_BOTTOM (1 << eSideBottom)
|
||||
|
||||
nsresult
|
||||
NS_NewStackLayout(nsCOMPtr<nsBoxLayout>& aNewLayout)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue