summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_doc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_doc.cpp')
-rw-r--r--chalk/ui/kis_doc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/chalk/ui/kis_doc.cpp b/chalk/ui/kis_doc.cpp
index 60dbbfdd..5db84839 100644
--- a/chalk/ui/kis_doc.cpp
+++ b/chalk/ui/kis_doc.cpp
@@ -260,8 +260,8 @@ bool KisDoc::init()
m_cmdHistory = new KoCommandHistory(actionCollection(), true);
TQ_CHECK_PTR(m_cmdHistory);
- connect(m_cmdHistory, TQT_SIGNAL(documentRestored()), this, TQT_SLOT(slotDocumentRestored()));
- connect(m_cmdHistory, TQT_SIGNAL(commandExecuted(KCommand *)), this, TQT_SLOT(slotCommandExecuted(KCommand *)));
+ connect(m_cmdHistory, TQ_SIGNAL(documentRestored()), this, TQ_SLOT(slotDocumentRestored()));
+ connect(m_cmdHistory, TQ_SIGNAL(commandExecuted(KCommand *)), this, TQ_SLOT(slotCommandExecuted(KCommand *)));
setUndo(true);
m_nserver = new KisNameServer(i18n("Image %1"), 1);
@@ -447,7 +447,7 @@ KisImageSP KisDoc::loadImage(const TQDomElement& element)
img = new KisImage(this, width, height, cs, name);
img->blockSignals(true); // Don't send out signals while we're building the image
TQ_CHECK_PTR(img);
- connect( img, TQT_SIGNAL( sigImageModified() ), this, TQT_SLOT( slotImageUpdated() ));
+ connect( img, TQ_SIGNAL( sigImageModified() ), this, TQ_SLOT( slotImageUpdated() ));
img->setDescription(description);
img->setResolution(xres, yres);
@@ -859,7 +859,7 @@ KisImageSP KisDoc::newImage(const TQString& name, TQ_INT32 width, TQ_INT32 heigh
KisImageSP img = new KisImage(this, width, height, colorstrategy, name);
TQ_CHECK_PTR(img);
- connect( img, TQT_SIGNAL( sigImageModified() ), this, TQT_SLOT( slotImageUpdated() ));
+ connect( img, TQ_SIGNAL( sigImageModified() ), this, TQ_SLOT( slotImageUpdated() ));
KisPaintLayer *layer = new KisPaintLayer(img, img->nextLayerName(), OPACITY_OPAQUE,colorstrategy);
TQ_CHECK_PTR(layer);
@@ -898,7 +898,7 @@ bool KisDoc::newImage(const TQString& name, TQ_INT32 width, TQ_INT32 height, Kis
img = new KisImage(this, width, height, cs, name);
TQ_CHECK_PTR(img);
- connect( img, TQT_SIGNAL( sigImageModified() ), this, TQT_SLOT( slotImageUpdated() ));
+ connect( img, TQ_SIGNAL( sigImageModified() ), this, TQ_SLOT( slotImageUpdated() ));
img->setResolution(imgResolution, imgResolution);
img->setDescription(imgDescription);
img->setProfile(cs->getProfile());