mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 13:04:13 +00:00
disallow buffer change, include string dependency
This commit is contained in:
parent
626997af14
commit
f1e5714456
@ -17,7 +17,7 @@ Content::Content()
|
||||
Content::~Content() = default;
|
||||
|
||||
void Content::set(
|
||||
string buffer
|
||||
const string & buffer
|
||||
) {
|
||||
// @TODO
|
||||
}
|
||||
|
@ -3,6 +3,8 @@
|
||||
|
||||
#include <gtkmm/box.h>
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace app::browser::main::tab::page
|
||||
{
|
||||
class Content : public Gtk::Box
|
||||
@ -14,7 +16,7 @@ namespace app::browser::main::tab::page
|
||||
~Content();
|
||||
|
||||
void set(
|
||||
std::string buffer
|
||||
const std::string & buffer
|
||||
);
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user