diff options
author | David Robillard <d@drobilla.net> | 2007-02-07 03:22:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-07 03:22:42 +0000 |
commit | b0dda1ccccb53f8bb7ad59c96252647f8e4aa124 (patch) | |
tree | 78a88098a4f73413705141bfe8006373e5671625 /src/PatchageFlowCanvas.h | |
parent | 7eb1849da7c9473c5242665b9a28081034ec6876 (diff) | |
download | patchage-b0dda1ccccb53f8bb7ad59c96252647f8e4aa124.tar.gz patchage-b0dda1ccccb53f8bb7ad59c96252647f8e4aa124.tar.bz2 patchage-b0dda1ccccb53f8bb7ad59c96252647f8e4aa124.zip |
Mad sed-fu for consistent private member naming.
git-svn-id: http://svn.drobilla.net/lad/patchage@286 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageFlowCanvas.h')
-rw-r--r-- | src/PatchageFlowCanvas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageFlowCanvas.h b/src/PatchageFlowCanvas.h index 6af51f7..f2a126f 100644 --- a/src/PatchageFlowCanvas.h +++ b/src/PatchageFlowCanvas.h @@ -36,7 +36,7 @@ using namespace LibFlowCanvas; class PatchageFlowCanvas : public FlowCanvas { public: - PatchageFlowCanvas(Patchage* m_app, int width, int height); + PatchageFlowCanvas(Patchage* _app, int width, int height); boost::shared_ptr<PatchageModule> find_module(const string& name, ModuleType type); #ifdef HAVE_ALSA @@ -48,7 +48,7 @@ public: void status_message(const string& msg); private: - Patchage* m_app; + Patchage* _app; }; |