diff options
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" |