mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix missing const args for PluginController
This commit is contained in:
parent
b649fe274b
commit
3eb4a144fc
|
@ -28,7 +28,7 @@ PluginController::PluginController(const Paths &paths_)
|
|||
{
|
||||
}
|
||||
|
||||
void PluginController::initialize(Settings &settings, Paths &paths)
|
||||
void PluginController::initialize(Settings &settings, const Paths &paths)
|
||||
{
|
||||
(void)paths;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ class PluginController : public Singleton
|
|||
public:
|
||||
explicit PluginController(const Paths &paths_);
|
||||
|
||||
void initialize(Settings &settings, Paths &paths) override;
|
||||
void initialize(Settings &settings, const Paths &paths) override;
|
||||
|
||||
QString tryExecPluginCommand(const QString &commandName,
|
||||
const CommandContext &ctx);
|
||||
|
|
Loading…
Reference in a new issue