aboutsummaryrefslogtreecommitdiff
path: root/pulse
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2021-05-02 16:10:34 +0200
committerAndreas Grois <andi@grois.info>2021-05-02 16:10:34 +0200
commite1f0525e4e1dcf674aa7489042a06b7c7d671a2a (patch)
tree2c863dd331a222d77e66c36847dc6408b2dff649 /pulse
parentd2fd2da41dbc9c2f19711c14cd68142d5484eb40 (diff)
Make runnable's run() method take a mutable self-reference.
Because there is no real reason speaking against it, and it makes plugin development a lot easier.
Diffstat (limited to 'pulse')
-rw-r--r--pulse/src/runnable/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pulse/src/runnable/mod.rs b/pulse/src/runnable/mod.rs
index 612bca9..ca63f24 100644
--- a/pulse/src/runnable/mod.rs
+++ b/pulse/src/runnable/mod.rs
@@ -28,7 +28,7 @@ impl<'p : 's, 's> PulseVolumeRunnable<'p> {
}
impl<'p> SwayStatusModuleRunnable for PulseVolumeRunnable<'p> {
- fn run(&self) {
+ fn run(&mut self) {
//TODO
}
}