mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
rename header bar class
This commit is contained in:
parent
c8b7bef23c
commit
5699735bf0
3 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#include "title.h"
|
||||
#include "bar.h"
|
||||
|
||||
namespace app
|
||||
{
|
||||
|
|
@ -7,13 +7,13 @@ namespace app
|
|||
namespace header
|
||||
{
|
||||
// Construct
|
||||
Title::Title(
|
||||
Bar::Bar(
|
||||
Header *header
|
||||
) {
|
||||
// Init GTK
|
||||
this->gtk = gtk_box_new(
|
||||
GTK_ORIENTATION_HORIZONTAL,
|
||||
Title::SPACING
|
||||
Bar::SPACING
|
||||
);
|
||||
|
||||
gtk_widget_show(
|
||||
|
|
@ -12,7 +12,7 @@ namespace app
|
|||
|
||||
namespace header
|
||||
{
|
||||
class Title
|
||||
class Bar
|
||||
{
|
||||
public:
|
||||
|
||||
|
|
@ -25,7 +25,7 @@ namespace app
|
|||
// Dependencies
|
||||
Header *header;
|
||||
|
||||
Title(
|
||||
Bar(
|
||||
Header *header
|
||||
);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue