rename header bar class

This commit is contained in:
yggverse 2024-08-05 06:12:37 +03:00
parent c8b7bef23c
commit 5699735bf0
3 changed files with 6 additions and 6 deletions

View file

@ -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(

View file

@ -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
);
};