mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-14 19:45:31 -04:00
[EGD-2392] SMS Feed window added
This commit is contained in:
@@ -13,8 +13,12 @@ Alignment::Alignment() :
|
||||
alignment{Alignment::ALIGN_HORIZONTAL_LEFT | ALIGN_VERTICAL_TOP } {
|
||||
}
|
||||
|
||||
Alignment::Alignment( const uint32_t valH, const uint32_t valV ) :
|
||||
alignment {valH | valV} {
|
||||
Alignment::Alignment(const uint32_t align) : alignment{align}
|
||||
{
|
||||
}
|
||||
|
||||
Alignment::Alignment(const uint32_t valH, const uint32_t valV) : Alignment(valH | valV)
|
||||
{
|
||||
}
|
||||
|
||||
Alignment::~Alignment() {
|
||||
|
||||
Reference in New Issue
Block a user