summaryrefslogtreecommitdiffstats
path: root/examples/ipc/sharedmemory/dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ipc/sharedmemory/dialog.cpp')
-rw-r--r--examples/ipc/sharedmemory/dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/ipc/sharedmemory/dialog.cpp b/examples/ipc/sharedmemory/dialog.cpp
index 2be62b1b47..c504f3a202 100644
--- a/examples/ipc/sharedmemory/dialog.cpp
+++ b/examples/ipc/sharedmemory/dialog.cpp
@@ -73,8 +73,8 @@ Dialog::Dialog(QWidget *parent)
ui.setupUi(this);
connect(ui.loadFromFileButton, SIGNAL(clicked()), SLOT(loadFromFile()));
connect(ui.loadFromSharedMemoryButton,
- SIGNAL(clicked()),
- SLOT(loadFromMemory()));
+ SIGNAL(clicked()),
+ SLOT(loadFromMemory()));
setWindowTitle(tr("SharedMemory Example"));
}
//! [0]
@@ -155,7 +155,7 @@ void Dialog::loadFromMemory()
{
if (!sharedMemory.attach()) {
ui.label->setText(tr("Unable to attach to shared memory segment.\n" \
- "Load an image first."));
+ "Load an image first."));
return;
}