mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
LibGUI: Rename GTableModel => GModel.
This commit is contained in:
parent
9d4b4c2689
commit
994cf10b3e
23 changed files with 105 additions and 105 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <LibGUI/GTableView.h>
|
||||
#include <sys/stat.h>
|
||||
#include "DirectoryTableModel.h"
|
||||
#include "DirectoryModel.h"
|
||||
|
||||
class DirectoryTableView final : public GTableView {
|
||||
public:
|
||||
|
@ -21,10 +21,10 @@ public:
|
|||
private:
|
||||
virtual void model_notification(const GModelNotification&) override;
|
||||
|
||||
DirectoryTableModel& model() { return *m_model; }
|
||||
const DirectoryTableModel& model() const { return *m_model; }
|
||||
DirectoryModel& model() { return *m_model; }
|
||||
const DirectoryModel& model() const { return *m_model; }
|
||||
|
||||
void set_status_message(const String&);
|
||||
|
||||
Retained<DirectoryTableModel> m_model;
|
||||
Retained<DirectoryModel> m_model;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue