diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 13:47:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-08 20:53:27 +0900 |
commit | 26bcb362b66b78984c0c7567d00c12f3425d6468 (patch) | |
tree | f2c46f436efb5595cc1e738121ff030dda0d561c /src/devices/gui/memory_editor.cpp | |
parent | aa5aa16b54b126dc8299b9b24d6d460c557ad67c (diff) | |
download | piklab-26bcb362b66b78984c0c7567d00c12f3425d6468.tar.gz piklab-26bcb362b66b78984c0c7567d00c12f3425d6468.zip |
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a8207be921513da0ccccf41e36e056736c2b8457)
Diffstat (limited to 'src/devices/gui/memory_editor.cpp')
-rw-r--r-- | src/devices/gui/memory_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/gui/memory_editor.cpp b/src/devices/gui/memory_editor.cpp index 308bcbf..db53341 100644 --- a/src/devices/gui/memory_editor.cpp +++ b/src/devices/gui/memory_editor.cpp @@ -300,7 +300,7 @@ void Device::MemoryTypeEditor::init(bool first) for (uint i=0; i<Nb_Actions; i++) { if ( hasAction(Action(i)) ) { _actions[i] = new TDEAction(i18n(ACTION_DATA[i].label), ACTION_DATA[i].icon, 0, - TQT_TQOBJECT(this), TQT_SLOT(doAction()), Main::toplevel().actionCollection()); + this, TQT_SLOT(doAction()), Main::toplevel().actionCollection()); addAction(_actions[i]); } if ( ACTION_DATA[i].properties & SeparatorAfter ) _title->appendSeparator(); |