summaryrefslogtreecommitdiffstats
path: root/src/modules/term
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/term')
-rw-r--r--src/modules/term/Makefile.am2
-rw-r--r--src/modules/term/termwidget.cpp6
2 files changed, 3 insertions, 5 deletions
diff --git a/src/modules/term/Makefile.am b/src/modules/term/Makefile.am
index 1567e615..f7a7e279 100644
--- a/src/modules/term/Makefile.am
+++ b/src/modules/term/Makefile.am
@@ -10,7 +10,7 @@ pluglib_LTLIBRARIES = libkviterm.la
libkviterm_la_LDFLAGS = -module -avoid-version $(SS_LDFLAGS) $(SS_LIBDIRS)
libkviterm_la_SOURCES = libkviterm.cpp termwidget.cpp termwindow.cpp
-libkviterm_la_LIBADD = $(SS_LIBLINK) ../../kvilib/build/libkvilib.la
+libkviterm_la_LIBADD = $(SS_LIBLINK) ../../kvirc/build/libkvirc.la
noinst_HEADERS= termwidget.h termwindow.h
diff --git a/src/modules/term/termwidget.cpp b/src/modules/term/termwidget.cpp
index e2eb8865..f0a9c24a 100644
--- a/src/modules/term/termwidget.cpp
+++ b/src/modules/term/termwidget.cpp
@@ -87,13 +87,11 @@ KviTermWidget::KviTermWidget(TQWidget * par,KviFrame * lpFrm,bool bIsStandalone)
connect(m_pKonsoleWidget,TQ_SIGNAL(destroyed()),this,TQ_SLOT(konsoleDestroyed()));
// tqDebug("Widget %d",m_pKonsoleWidget);
} else {
- m_pKonsoleWidget = new TQLabel(this,
- __tr2qs("Can't create the terminal emulation part"));
+ m_pKonsoleWidget = new TQLabel(__tr2qs("Can't create the terminal emulation part"), this);
}
} else {
- m_pKonsoleWidget = new TQLabel(this,
- __tr2qs("Can't retrieve the terminal emulation factory"));
+ m_pKonsoleWidget = new TQLabel(__tr2qs("Can't retrieve the terminal emulation factory"), this);
}
}