diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 16:30:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 16:30:48 +0900 |
commit | 1c22ae157c39e2c1434e5ec43a05eda78dc86798 (patch) | |
tree | 13d7f43a2e9457cd1eddc956979b1f6dc026b24c /src/devices/gui | |
parent | 6eeb6f3bd853f29a0162ac9491cf5137afa44eb5 (diff) | |
download | piklab-1c22ae157c39e2c1434e5ec43a05eda78dc86798.tar.gz piklab-1c22ae157c39e2c1434e5ec43a05eda78dc86798.zip |
Include moc files in cpp sources
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/devices/gui')
-rw-r--r-- | src/devices/gui/hex_view.cpp | 2 | ||||
-rw-r--r-- | src/devices/gui/hex_word_editor.cpp | 2 | ||||
-rw-r--r-- | src/devices/gui/memory_editor.cpp | 2 | ||||
-rw-r--r-- | src/devices/gui/register_view.cpp | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/src/devices/gui/hex_view.cpp b/src/devices/gui/hex_view.cpp index 4a6319f..305ac0b 100644 --- a/src/devices/gui/hex_view.cpp +++ b/src/devices/gui/hex_view.cpp @@ -21,3 +21,5 @@ void Device::HexView::display(Memory *memory) if ( _memory==0 ) return; display(); } + +#include "hex_view.moc" diff --git a/src/devices/gui/hex_word_editor.cpp b/src/devices/gui/hex_word_editor.cpp index 163217c..e9969cf 100644 --- a/src/devices/gui/hex_word_editor.cpp +++ b/src/devices/gui/hex_word_editor.cpp @@ -40,3 +40,5 @@ void Device::RegisterHexWordEditor::setValue(BitValue word) _word = word; set(); } + +#include "hex_word_editor.moc" diff --git a/src/devices/gui/memory_editor.cpp b/src/devices/gui/memory_editor.cpp index de5da8e..feb564e 100644 --- a/src/devices/gui/memory_editor.cpp +++ b/src/devices/gui/memory_editor.cpp @@ -367,3 +367,5 @@ const Device::Memory *Device::MemoryTypeEditor::originalMemory() const { return (_hexview ? _hexview->originalMemory() : 0); } + +#include "memory_editor.moc" diff --git a/src/devices/gui/register_view.cpp b/src/devices/gui/register_view.cpp index 6e5c268..7326a62 100644 --- a/src/devices/gui/register_view.cpp +++ b/src/devices/gui/register_view.cpp @@ -206,3 +206,5 @@ void Register::LineEdit::keyPressEvent(TQKeyEvent *e) Register::View::View(TQWidget *parent, const char *name) : TQFrame(parent, name), GenericView(list()) {} + +#include "register_view.moc" |