1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibGUI: Convert Vector<OwnPtr> to NonnullOwnPtrVector.

This is turning out really nice so far. :^)
This commit is contained in:
Andreas Kling 2019-07-24 09:12:23 +02:00
parent 90ea4918d6
commit 2196f17c10
7 changed files with 46 additions and 47 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include <AK/Badge.h>
#include <AK/Vector.h>
#include <AK/NonnullOwnPtrVector.h>
#include <LibGUI/GMenu.h>
class GApplication;
@ -11,7 +11,7 @@ public:
GMenuBar();
~GMenuBar();
void add_menu(OwnPtr<GMenu>&&);
void add_menu(NonnullOwnPtr<GMenu>&&);
void notify_added_to_application(Badge<GApplication>);
void notify_removed_from_application(Badge<GApplication>);
@ -21,5 +21,5 @@ private:
void unrealize_menubar();
int m_menubar_id { -1 };
Vector<OwnPtr<GMenu>> m_menus;
NonnullOwnPtrVector<GMenu> m_menus;
};