mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
disallow buffer change, include string dependency
This commit is contained in:
parent
626997af14
commit
f1e5714456
2 changed files with 4 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue