summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kcron/ktview.cpp2
-rw-r--r--kdat/OptionsDlgWidget.ui4
-rw-r--r--kdat/ktreeview.cpp74
-rw-r--r--kdat/ktreeview.h8
-rw-r--r--knetworkconf/backends/network.pl.in14
-rw-r--r--knetworkconf/backends/replace.pl.in2
-rw-r--r--knetworkconf/backends/xml.pl.in6
-rw-r--r--knetworkconf/knetworkconf/kadddevicecontainer.cpp2
-rw-r--r--knetworkconf/knetworkconf/kadddevicedlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kadddevicedlgextension.ui2
-rw-r--r--knetworkconf/knetworkconf/kadddevicewifiext.ui2
-rw-r--r--knetworkconf/knetworkconf/kadddnsserverdlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kaddknownhostdlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kaddressvalidator.cpp6
-rw-r--r--knetworkconf/knetworkconf/kaddressvalidator.h8
-rw-r--r--knetworkconf/knetworkconf/kdetectdistrodlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kinterfaceupdowndlg.ui2
-rw-r--r--knetworkconf/knetworkconf/knetworkconfdlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kreloadnetworkdlg.ui2
-rw-r--r--knetworkconf/knetworkconf/kselectdistrodlg.ui2
-rw-r--r--kpackage/gentooInterface.cpp10
-rw-r--r--ksysv/configwizard.ui8
-rw-r--r--ksysv/lookandfeelconfig.ui6
-rw-r--r--ksysv/miscconfig.ui10
-rw-r--r--ksysv/pathconfig.ui10
-rw-r--r--kuser/filessettings.ui2
-rw-r--r--kuser/generalsettings.ui2
-rw-r--r--kuser/kuser.cpp4
-rw-r--r--kuser/ldapsamba.ui2
-rw-r--r--kuser/ldapsettings.ui2
-rw-r--r--kuser/passwordpolicy.ui2
31 files changed, 102 insertions, 102 deletions
diff --git a/kcron/ktview.cpp b/kcron/ktview.cpp
index 9c5591e..5819104 100644
--- a/kcron/ktview.cpp
+++ b/kcron/ktview.cpp
@@ -62,7 +62,7 @@ KTView::KTView(TQWidget *tqparent, const char* name) :
clipboardCTTask(0),
clipboardCTVariable(0)
{
- ktapp = (KTApp*)tqparentWidget();
+ ktapp = (KTApp*)parentWidget();
setBackgroundMode(PaletteBase);
refresh();
listView->setSelected(listView->firstChild(), true);
diff --git a/kdat/OptionsDlgWidget.ui b/kdat/OptionsDlgWidget.ui
index 4d8d6a7..aaa9348 100644
--- a/kdat/OptionsDlgWidget.ui
+++ b/kdat/OptionsDlgWidget.ui
@@ -380,6 +380,6 @@ You must still specify the block size.</string>
<slot access="protected">slotBrowseTapeDevice()</slot>
<slot access="protected">slotBrowseTarCommand()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="11" margin="6"/>
-<tqlayoutfunctions spacing="KDialog::spacingHint" margin="KDialog::marginHint"/>
+<layoutdefaults spacing="11" margin="6"/>
+<layoutfunctions spacing="KDialog::spacingHint" margin="KDialog::marginHint"/>
</UI>
diff --git a/kdat/ktreeview.cpp b/kdat/ktreeview.cpp
index 51ab256..c43cb35 100644
--- a/kdat/ktreeview.cpp
+++ b/kdat/ktreeview.cpp
@@ -314,20 +314,20 @@ void KTreeViewItem::paint(TQPainter* p, int indent, const TQColorGroup& cg,
void KTreeViewItem::paintExpandButton(TQPainter* p, int indent, int cellHeight) const
{
- int tqparentLeaderX = indent - (22 / 2);
+ int parentLeaderX = indent - (22 / 2);
int cellCenterY = cellHeight / 2;
- expandButton.setRect(tqparentLeaderX - 4, cellCenterY - 4, 9, 9);
+ expandButton.setRect(parentLeaderX - 4, cellCenterY - 4, 9, 9);
p->setBrush(TQt::white);
p->drawRect(expandButton);
if (expanded) {
- p->drawLine(tqparentLeaderX - 2, cellCenterY,
- tqparentLeaderX + 2, cellCenterY);
+ p->drawLine(parentLeaderX - 2, cellCenterY,
+ parentLeaderX + 2, cellCenterY);
} else {
- p->drawLine(tqparentLeaderX - 2, cellCenterY,
- tqparentLeaderX + 2, cellCenterY);
- p->drawLine(tqparentLeaderX, cellCenterY - 2,
- tqparentLeaderX, cellCenterY + 2);
+ p->drawLine(parentLeaderX - 2, cellCenterY,
+ parentLeaderX + 2, cellCenterY);
+ p->drawLine(parentLeaderX, cellCenterY - 2,
+ parentLeaderX, cellCenterY + 2);
}
p->setBrush(TQt::NoBrush);
}
@@ -386,7 +386,7 @@ void KTreeViewItem::paintText(TQPainter* p, int indent, int cellHeight,
// paint the tree structure
void KTreeViewItem::paintTree(TQPainter* p, int indent, int cellHeight) const
{
- int tqparentLeaderX = indent - (22 / 2);
+ int parentLeaderX = indent - (22 / 2);
int cellCenterY = cellHeight / 2;
int cellBottomY = cellHeight - 1;
int itemLeaderX = indent - 3;
@@ -396,11 +396,11 @@ void KTreeViewItem::paintTree(TQPainter* p, int indent, int cellHeight) const
* towards tqparent or sibling.
*/
if (tqparent->tqparent != 0 || tqparent->getChild() != this)
- p->drawLine(tqparentLeaderX, 0, tqparentLeaderX, cellCenterY);
+ p->drawLine(parentLeaderX, 0, parentLeaderX, cellCenterY);
// draw the line down towards sibling
if (sibling)
- p->drawLine(tqparentLeaderX, cellCenterY, tqparentLeaderX, cellBottomY);
+ p->drawLine(parentLeaderX, cellCenterY, parentLeaderX, cellBottomY);
/*
* If this item has tqchildren or siblings in the tree or is a child of
@@ -415,7 +415,7 @@ void KTreeViewItem::paintTree(TQPainter* p, int indent, int cellHeight) const
*/
tqparent->getChild() != this)
{
- p->drawLine(tqparentLeaderX, cellCenterY, itemLeaderX, cellCenterY);
+ p->drawLine(parentLeaderX, cellCenterY, itemLeaderX, cellCenterY);
}
/*
@@ -650,10 +650,10 @@ void KTreeView::appendChildItem(const TQString & theText, const TQPixmap& thePix
void KTreeView::appendChildItem(KTreeViewItem* newItem, int index)
{
/* find tqparent item and append new item to tqparent's sub tree */
- KTreeViewItem* tqparentItem = itemAt(index);
- if (!tqparentItem)
+ KTreeViewItem* parentItem = itemAt(index);
+ if (!parentItem)
return;
- appendChildItem(tqparentItem, newItem);
+ appendChildItem(parentItem, newItem);
}
// appends the given item to the tqchildren of the item at the end of the
@@ -661,10 +661,10 @@ void KTreeView::appendChildItem(KTreeViewItem* newItem, int index)
void KTreeView::appendChildItem(KTreeViewItem* newItem, const KPath& thePath)
{
/* find tqparent item and append new item to tqparent's sub tree */
- KTreeViewItem* tqparentItem = itemAt(thePath);
- if (!tqparentItem)
+ KTreeViewItem* parentItem = itemAt(thePath);
+ if (!parentItem)
return;
- appendChildItem(tqparentItem, newItem);
+ appendChildItem(parentItem, newItem);
}
// indicates whether horizontal scrollbar appears only when needed
@@ -1321,14 +1321,14 @@ void KTreeView::expandOrCollapse(KTreeViewItem* tqparent)
{
bool autoU = autoUpdate();
setAutoUpdate(false);
- int tqparentIndex = itemRow(tqparent);
+ int parentIndex = itemRow(tqparent);
if (tqparent->isExpanded()) {
collapseSubTree(tqparent);
- emit collapsed(tqparentIndex);
+ emit collapsed(parentIndex);
}
else {
expandSubTree(tqparent);
- emit expanded(tqparentIndex);
+ emit expanded(parentIndex);
}
if (autoU && isVisible())
tqrepaint();
@@ -1368,21 +1368,21 @@ void KTreeView::expandSubTree(KTreeViewItem* subRoot)
}
// fix up branch levels out of whack from split/join operations on the tree
-void KTreeView::fixChildren(KTreeViewItem *tqparentItem)
+void KTreeView::fixChildren(KTreeViewItem *parentItem)
{
KTreeViewItem* childItem = 0;
KTreeViewItem* siblingItem = 0;
-// int childBranch = tqparentItem->getBranch() + 1;
- if(tqparentItem->hasChild()) {
- childItem = tqparentItem->getChild();
+// int childBranch = parentItem->getBranch() + 1;
+ if(parentItem->hasChild()) {
+ childItem = parentItem->getChild();
// childItem->setBranch(childBranch);
- childItem->owner = tqparentItem->owner;
+ childItem->owner = parentItem->owner;
fixChildren(childItem);
}
while(childItem && childItem->hasSibling()) {
siblingItem = childItem->getSibling();
// siblingItem->setBranch(childBranch);
- siblingItem->owner = tqparentItem->owner;
+ siblingItem->owner = parentItem->owner;
fixChildren(siblingItem);
childItem = siblingItem;
}
@@ -1483,19 +1483,19 @@ bool KTreeView::insertItem(KTreeViewItem* referenceItem,
{
setCellHeight(newItem->height(fontMetrics()));
}
- KTreeViewItem* tqparentItem;
+ KTreeViewItem* parentItem;
if (referenceItem) {
- tqparentItem = referenceItem->getParent();
- int insertIndex = tqparentItem->childIndex(referenceItem);
+ parentItem = referenceItem->getParent();
+ int insertIndex = parentItem->childIndex(referenceItem);
if (!prefix)
insertIndex++;
- tqparentItem->insertChild(insertIndex, newItem);
+ parentItem->insertChild(insertIndex, newItem);
}
else {
// no reference item, append at end of visible tree
// need to tqrepaint
- tqparentItem = treeRoot;
- tqparentItem->appendChild(newItem);
+ parentItem = treeRoot;
+ parentItem->appendChild(newItem);
}
// set item expansion
@@ -1508,7 +1508,7 @@ bool KTreeView::insertItem(KTreeViewItem* referenceItem,
// if tqrepaint necessary, do it if visible and auto update
// enabled
- if (newItem->isVisible() || tqparentItem->childCount() == 1) {
+ if (newItem->isVisible() || parentItem->childCount() == 1) {
bool autoU = autoUpdate();
setAutoUpdate(FALSE);
updateVisibleItems();
@@ -1994,10 +1994,10 @@ void KTreeView::takeItem(KTreeViewItem* item)
cur = 0;
}
}
- KTreeViewItem* tqparentItem = item->getParent();
- tqparentItem->removeChild(item);
+ KTreeViewItem* parentItem = item->getParent();
+ parentItem->removeChild(item);
item->sibling = 0;
- if (wasVisible || tqparentItem->childCount() == 0) {
+ if (wasVisible || parentItem->childCount() == 0) {
bool autoU = autoUpdate();
setAutoUpdate(FALSE);
updateVisibleItems();
diff --git a/kdat/ktreeview.h b/kdat/ktreeview.h
index 3a42657..bd20d7c 100644
--- a/kdat/ktreeview.h
+++ b/kdat/ktreeview.h
@@ -756,7 +756,7 @@ public:
/**
* This function is deprecated. Use numRows() instead.
- * Returns the number of items that are visible (their tqparents are
+ * Returns the number of items that are visible (their parents are
* expanded).
*/
int visibleCount() const { return numRows(); }
@@ -801,13 +801,13 @@ protected:
/** Internal function used for counting items */
bool countItem(KTreeViewItem* item, void* total);
- void expandOrCollapse(KTreeViewItem *tqparentItem);
+ void expandOrCollapse(KTreeViewItem *parentItem);
/**
* Expands the specified subtree and updates the display. subRoot need
* not be visible.
*/
void expandSubTree(KTreeViewItem* subRoot);
- void fixChildren(KTreeViewItem *tqparentItem);
+ void fixChildren(KTreeViewItem *parentItem);
virtual void focusInEvent(TQFocusEvent *e);
void forEveryItem(KForEveryM func,
void *user);
@@ -828,7 +828,7 @@ protected:
* topmost level. If referenceItem is not 0, it must be an item that is
* already in the KTreeView. Internal data is updated and the display
* is refreshed as necessary. The inserted item may still be invisible
- * if any of the tqparents is collapsed. newItem must not be 0.
+ * if any of the parents is collapsed. newItem must not be 0.
*/
bool insertItem(KTreeViewItem* referenceItem, KTreeViewItem* newItem,
bool prefix);
diff --git a/knetworkconf/backends/network.pl.in b/knetworkconf/backends/network.pl.in
index 6441761..42d1629 100644
--- a/knetworkconf/backends/network.pl.in
+++ b/knetworkconf/backends/network.pl.in
@@ -433,12 +433,12 @@ sub gst_network_ipv4_vec2str
sub gst_network_ipv4_calc_subnet_vec
{
my ($addr, $tqmask) = @_;
- my ($addrvec, $tqmaskvec);
+ my ($addrvec, $maskvec);
$addrvec = &gst_network_ipv4_str2vec ($addr);
- $tqmaskvec = &gst_network_ipv4_str2vec ($tqmask);
+ $maskvec = &gst_network_ipv4_str2vec ($tqmask);
- return $addrvec & $tqmaskvec;
+ return $addrvec & $maskvec;
}
# What you're looking for.
@@ -455,9 +455,9 @@ sub gst_network_ipv4_calc_bcast_vec
my ($addr, $tqmask) = @_;
$addrvec = &gst_network_ipv4_str2vec ($addr);
- $tqmaskvec = &gst_network_ipv4_str2vec ($tqmask);
+ $maskvec = &gst_network_ipv4_str2vec ($tqmask);
- return $addrvec | ~$tqmaskvec;
+ return $addrvec | ~$maskvec;
}
# And this returning the quad-dot notation.
@@ -3531,7 +3531,7 @@ sub gst_network_pld10_get_ipaddr
{
my ($file, $key, $what) = @_;
my ($ipaddr, $nettqmask, $ret, $i);
- my @nettqmask_prefixes = (0, 128, 192, 224, 240, 248, 252, 254, 255);
+ my @netmask_prefixes = (0, 128, 192, 224, 240, 248, 252, 254, 255);
$ipaddr = &gst_parse_sh($file, $key);
return undef if $ipaddr eq "";
@@ -3551,7 +3551,7 @@ sub gst_network_pld10_get_ipaddr
$ret .= "255.";
}
- $ret .= "$nettqmask_prefixes[$b%8]." if $nettqmask < 32;
+ $ret .= "$netmask_prefixes[$b%8]." if $nettqmask < 32;
for($i = int($nettqmask/8) + 1; $i < 4; $i++)
{
diff --git a/knetworkconf/backends/replace.pl.in b/knetworkconf/backends/replace.pl.in
index 30ec359..bac1f9a 100644
--- a/knetworkconf/backends/replace.pl.in
+++ b/knetworkconf/backends/replace.pl.in
@@ -477,7 +477,7 @@ sub gst_replace_join_hash
return $res;
}
-# Find $re matching send string and replace tqparenthesyzed
+# Find $re matching send string and replace parenthesyzed
# part of $re with $value. FIXME: apply meeks' more general impl.
sub gst_replace_chat
{
diff --git a/knetworkconf/backends/xml.pl.in b/knetworkconf/backends/xml.pl.in
index 9421f75..dfd41cd 100644
--- a/knetworkconf/backends/xml.pl.in
+++ b/knetworkconf/backends/xml.pl.in
@@ -891,7 +891,7 @@ sub gst_xml_model_ensure
next if ($elem eq "");
my @tqchildren = @$branch;
- my $tqparent_branch = $branch;
+ my $parent_branch = $branch;
shift @tqchildren; # Attributes
$branch = undef;
@@ -918,8 +918,8 @@ sub gst_xml_model_ensure
push @list, \%hash;
- push @$tqparent_branch, $elem;
- push @$tqparent_branch, $branch;
+ push @$parent_branch, $elem;
+ push @$parent_branch, $branch;
}
}
diff --git a/knetworkconf/knetworkconf/kadddevicecontainer.cpp b/knetworkconf/knetworkconf/kadddevicecontainer.cpp
index 6690739..f8bba5d 100644
--- a/knetworkconf/knetworkconf/kadddevicecontainer.cpp
+++ b/knetworkconf/knetworkconf/kadddevicecontainer.cpp
@@ -128,7 +128,7 @@ void KAddDeviceContainer::verifyDeviceInfoSlot()
{
KMessageBox::error(this,i18n("The format of the specified IP address is not valid."),i18n("Invalid IP Address"));
}
- else if (_advanced && !KAddressValidator::isNettqmaskValid(nettqmask))
+ else if (_advanced && !KAddressValidator::isNetmaskValid(nettqmask))
KMessageBox::error(this,i18n("The format of the specified nettqmask is not valid."),i18n("Invalid IP Address"));
else if (!broadcast.isEmpty() && _advanced && !KAddressValidator::isBroadcastValid(broadcast))
diff --git a/knetworkconf/knetworkconf/kadddevicedlg.ui b/knetworkconf/knetworkconf/kadddevicedlg.ui
index dd99d94..a3f2a23 100644
--- a/knetworkconf/knetworkconf/kadddevicedlg.ui
+++ b/knetworkconf/knetworkconf/kadddevicedlg.ui
@@ -402,7 +402,7 @@
<functions>
<function access="private" specifier="non virtual">init()</function>
</functions>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcombobox.h</includehint>
<includehint>kcombobox.h</includehint>
diff --git a/knetworkconf/knetworkconf/kadddevicedlgextension.ui b/knetworkconf/knetworkconf/kadddevicedlgextension.ui
index 31657ec..ebbca21 100644
--- a/knetworkconf/knetworkconf/kadddevicedlgextension.ui
+++ b/knetworkconf/knetworkconf/kadddevicedlgextension.ui
@@ -147,7 +147,7 @@
<functions>
<function access="private" specifier="non virtual">init()</function>
</functions>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
diff --git a/knetworkconf/knetworkconf/kadddevicewifiext.ui b/knetworkconf/knetworkconf/kadddevicewifiext.ui
index 6b04eb6..6b60cf2 100644
--- a/knetworkconf/knetworkconf/kadddevicewifiext.ui
+++ b/knetworkconf/knetworkconf/kadddevicewifiext.ui
@@ -88,7 +88,7 @@
</widget>
</vbox>
</widget>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpassdlg.h</includehint>
diff --git a/knetworkconf/knetworkconf/kadddnsserverdlg.ui b/knetworkconf/knetworkconf/kadddnsserverdlg.ui
index 57094a5..4bacfab 100644
--- a/knetworkconf/knetworkconf/kadddnsserverdlg.ui
+++ b/knetworkconf/knetworkconf/kadddnsserverdlg.ui
@@ -156,7 +156,7 @@
<function returnType="bool">modified()</function>
<function access="private" specifier="non virtual">init()</function>
</functions>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdialog.h</includehint>
<includehint>klineedit.h</includehint>
diff --git a/knetworkconf/knetworkconf/kaddknownhostdlg.ui b/knetworkconf/knetworkconf/kaddknownhostdlg.ui
index 96cf559..397df4c 100644
--- a/knetworkconf/knetworkconf/kaddknownhostdlg.ui
+++ b/knetworkconf/knetworkconf/kaddknownhostdlg.ui
@@ -289,7 +289,7 @@
<function access="private" specifier="non virtual">init()</function>
<function specifier="non virtual" returnType="bool">modified()</function>
</functions>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdialog.h</includehint>
<includehint>klineedit.h</includehint>
diff --git a/knetworkconf/knetworkconf/kaddressvalidator.cpp b/knetworkconf/knetworkconf/kaddressvalidator.cpp
index d7d23bc..f3fabe7 100644
--- a/knetworkconf/knetworkconf/kaddressvalidator.cpp
+++ b/knetworkconf/knetworkconf/kaddressvalidator.cpp
@@ -18,7 +18,7 @@
#include "kaddressvalidator.h"
/*
- Class for validating IP address and nettqmasks, and to calculate network and broadcast values.
+ Class for validating IP address and netmasks, and to calculate network and broadcast values.
The functions to do the last two things where taken from the code of ipcalc.c, made by
Erik Troan <ewt@redhat.com> and Preston Brown <pbrown@redhat.com> from Red Hat Inc. .
*/
@@ -53,7 +53,7 @@ bool KAddressValidator::isValidIPAddress(TQString addr){
else
return false;
}
-bool KAddressValidator::isNettqmaskValid(TQString addr){
+bool KAddressValidator::isNetmaskValid(TQString addr){
TQString s = "";
int i;
int number;
@@ -140,7 +140,7 @@ unsigned long int KAddressValidator::prefix2tqmask(int prefix){
return htonl(~((2 << (31 - prefix)) - 1));
}
/** \fn int tqmask2prefix(unsigned long int tqmask)
- \brief calculates the number of bits tqmasked off by a nettqmask.
+ \brief calculates the number of bits masked off by a nettqmask.
This function calculates the significant bits in an IP address as specified by
a nettqmask. See also \ref prefix2tqmask.
diff --git a/knetworkconf/knetworkconf/kaddressvalidator.h b/knetworkconf/knetworkconf/kaddressvalidator.h
index 5a05d84..fa8b8ca 100644
--- a/knetworkconf/knetworkconf/kaddressvalidator.h
+++ b/knetworkconf/knetworkconf/kaddressvalidator.h
@@ -19,7 +19,7 @@
#define KADDRESSVALIDATOR_H
/*
- Class for validating IP address and nettqmasks, and to calculate network and broadcast values.
+ Class for validating IP address and netmasks, and to calculate network and broadcast values.
The functions to do the last two things where taken from the code of ipcalc.c, made by
Erik Troan <ewt@redhat.com> and Preston Brown <pbrown@redhat.com> from Red Hat Inc.
*/
@@ -43,7 +43,7 @@
#include <netinet/in.h>
#include <tqstring.h>
-/**Class that has simple methods for validating IP addresses, nettqmasks, calculating
+/**Class that has simple methods for validating IP addresses, netmasks, calculating
broadcast and network addresses.
*@author Juan Luis Baptiste
@@ -56,7 +56,7 @@ public:
/** Validates if the address written by the user is a valid one. Return true if it is and false if not. */
static bool isValidIPAddress(TQString addr);
/** Validates if the Nettqmask written by the user is a valid one. Return true if it is and false if not. */
- static bool isNettqmaskValid(TQString addr);
+ static bool isNetmaskValid(TQString addr);
/** Validates if the Network written by the user is a valid one. Return true if it is and false if not. */
static bool isNetworkValid(const TQString &addr);
/** Validates if the Broadcast written by the user is a valid one. Return true if it is and false if not. */
@@ -103,7 +103,7 @@ private: // Private methods
*/
static unsigned long int prefix2tqmask(int prefix);
/** \fn int tqmask2prefix(unsigned long int tqmask)
- \brief calculates the number of bits tqmasked off by a nettqmask.
+ \brief calculates the number of bits masked off by a nettqmask.
This function calculates the significant bits in an IP address as specified by
a nettqmask. See also \ref prefix2tqmask.
diff --git a/knetworkconf/knetworkconf/kdetectdistrodlg.ui b/knetworkconf/knetworkconf/kdetectdistrodlg.ui
index 8391d6c..e4ad380 100644
--- a/knetworkconf/knetworkconf/kdetectdistrodlg.ui
+++ b/knetworkconf/knetworkconf/kdetectdistrodlg.ui
@@ -69,5 +69,5 @@
<data format="PNG" length="983">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000039e4944415418959595cd6b1d5518c67f934e9a776452cf40948e74915b2af6aa2897a6602a2e6e6a5d74e3dafe03d28f8d0b71292eba312808052964e34297154442119b2e44234aaca8ed151332c586ccd85cef1cc9e8bcd6938e8b9b7b136b6e4b5e18e683f33ef39ce77738c7abaa8a9dcaf33c2ebc7761e2e48993171179aaf75d7c50b7fd2e80822f557a3399bff4f1a557cf4f9f5ff47754dd2c33660e8931b50fafa6233a1c1019417c41a42baa4e290b8bae433caa4c3d1d3f89cf38707f6141867078577fb6941210858a31029b5d5a802d20cf721ae3c2e4213c600ff4870ca8615094b2005be44084aaed3bc6416e736ca1d876371175ca8385bbaeb13627d5a0eb3214284000ab8a1690decaa99b685be60f10ee0d1209d0a224b742a08a88609d82425e28b89e5301d7edf507d15ffd7515750c810ecfbc5627d8a42fbe30f753c247f342aa10f942eec088e9c6b369d587ddd39f3c1c33fb6302614ceee75da7b209747bc6bba53f7518ce4e8219035cb4a1ae048767dbd99f38fedaca7897f44b85bcc89150aa74256d6769f6a53a4d739bb7922469010cfd8f7e66b1ed9cbc2849db25a52d49db39d676e9ab2aea203631511879c7268e3ddc6834464a5b7e3077756ee6ec99b3edad28764bdf29eaba20adda3daa1a59b57beb8fd7ef1c7fe978b515850ff88288101b4142c184d29f8b55bd977e952c267fb4165bd7b4d0ebc952f2496bb1f5c3ece5d9fec6d35bc71e289111ac0fb18990b03b13754aa0c1bdf437d276ba9265f67d33666e34269aa5d95f9366f364f1fa1be7b61cdb759b0baccf9caeed5347d5fd1143aadd455faa828baa3e7d9beda9d7eb4fc4fbf55d09644dc2e0ae647c7eedfbefde02cabe70b2947c3b373cf7b6f85257a7e3b503b51722138d0294ae449d56c9cde4efec56f67be94ac17157550b2d744d9d2e4b68ee264baddfec9afdef1ebcf0d58277ea9553233317679acb3796bfe8dceedce9ac76aaceed4ed559ed54cbbf2c579dd54eb9f0cdc2a7d3e7a78f365f6c8e5cf9ec8a075055d58ed710c0916347aac644e31f09855cf31155f5d429aa8a557b5ffa83cadbfe72e6f499d1da78edb9c8442f9bd03c1bc5d133a52d35cbb3ebdbe87f3d7b7976bdd733f004ea3d4cbf333314c0a366bf79c86676b474fafcd489e6b9f9f9f9b56429b960c6cc8dda817a99acdc5c179f768ffe20e1feb669db69101c88df8c1f898f9ad16838f0794cc04c361a074d680e0ea23fa8fac2c94ab291173649b3741fb0577c10118b036b6de7bef477a87f018b9f681dd4db618a0000000049454e44ae426082</data>
</image>
</images>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/knetworkconf/knetworkconf/kinterfaceupdowndlg.ui b/knetworkconf/knetworkconf/kinterfaceupdowndlg.ui
index ac0b9e0..0986db4 100644
--- a/knetworkconf/knetworkconf/kinterfaceupdowndlg.ui
+++ b/knetworkconf/knetworkconf/kinterfaceupdowndlg.ui
@@ -97,7 +97,7 @@
<Q_SLOTS>
<slot>close()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdialog.h</includehint>
</includehints>
diff --git a/knetworkconf/knetworkconf/knetworkconfdlg.ui b/knetworkconf/knetworkconf/knetworkconfdlg.ui
index a184930..2405333 100644
--- a/knetworkconf/knetworkconf/knetworkconfdlg.ui
+++ b/knetworkconf/knetworkconf/knetworkconfdlg.ui
@@ -1072,7 +1072,7 @@
<slot access="private">removeProfileSlot()</slot>
<slot access="private">updateProfileSlot()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klistview.h</includehint>
<includehint>kpushbutton.h</includehint>
diff --git a/knetworkconf/knetworkconf/kreloadnetworkdlg.ui b/knetworkconf/knetworkconf/kreloadnetworkdlg.ui
index 816f4ab..9a1f62d 100644
--- a/knetworkconf/knetworkconf/kreloadnetworkdlg.ui
+++ b/knetworkconf/knetworkconf/kreloadnetworkdlg.ui
@@ -129,7 +129,7 @@ the changes can take effect.</string>
<slot>close()</slot>
</connection>
</connections>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdialog.h</includehint>
<includehint>kpushbutton.h</includehint>
diff --git a/knetworkconf/knetworkconf/kselectdistrodlg.ui b/knetworkconf/knetworkconf/kselectdistrodlg.ui
index e982f42..2bbfd95 100644
--- a/knetworkconf/knetworkconf/kselectdistrodlg.ui
+++ b/knetworkconf/knetworkconf/kselectdistrodlg.ui
@@ -132,7 +132,7 @@
<Q_SLOTS>
<slot>exitSlot()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdialog.h</includehint>
<includehint>klistbox.h</includehint>
diff --git a/kpackage/gentooInterface.cpp b/kpackage/gentooInterface.cpp
index 22eaefc..65338f4 100644
--- a/kpackage/gentooInterface.cpp
+++ b/kpackage/gentooInterface.cpp
@@ -39,7 +39,7 @@
Should we care about the world-file?
- Read tqmasked packages from /usr/portage/profiles/package.tqmask
+ Read masked packages from /usr/portage/profiles/package.tqmask
Use flags and CFLAGS?
@@ -181,14 +181,14 @@ void Gentoo::listInstalledPackages(TQPtrList<packageInfo> *pki)
continue;
}
- for (TQStringList::Iterator tqmaskIt = packageMask.begin(); tqmaskIt != packageMask.end(); ++tqmaskIt)
+ for (TQStringList::Iterator maskIt = packageMask.begin(); maskIt != packageMask.end(); ++maskIt)
{
// FIXME Should all be handled, just not implemented yet
- if ((*tqmaskIt).startsWith("<") || (*tqmaskIt).startsWith("=") || (*tqmaskIt).startsWith("~") || (*tqmaskIt).startsWith(">"))
+ if ((*maskIt).startsWith("<") || (*maskIt).startsWith("=") || (*maskIt).startsWith("~") || (*maskIt).startsWith(">"))
continue;
- if (*category+"/"+name == *tqmaskIt)
+ if (*category+"/"+name == *maskIt)
{
- kdDebug() << "Package: " << name << "-" << version << " is tqmasked" << endl;
+ kdDebug() << "Package: " << name << "-" << version << " is masked" << endl;
isMasked = true;
break;
}
diff --git a/ksysv/configwizard.ui b/ksysv/configwizard.ui
index 7053ceb..15dc5b9 100644
--- a/ksysv/configwizard.ui
+++ b/ksysv/configwizard.ui
@@ -23,10 +23,10 @@
<string>Configuration Wizard</string>
</property>
<property>
- <name>tqlayoutMargin</name>
+ <name>layoutMargin</name>
</property>
<property>
- <name>tqlayoutSpacing</name>
+ <name>layoutSpacing</name>
</property>
<widget>
<class>TQWidget</class>
@@ -316,10 +316,10 @@
<cstring>mServicesLayout</cstring>
</property>
<property>
- <name>tqlayoutMargin</name>
+ <name>layoutMargin</name>
</property>
<property>
- <name>tqlayoutSpacing</name>
+ <name>layoutSpacing</name>
</property>
<vbox>
<property stdset="1">
diff --git a/ksysv/lookandfeelconfig.ui b/ksysv/lookandfeelconfig.ui
index 4497567..07911b3 100644
--- a/ksysv/lookandfeelconfig.ui
+++ b/ksysv/lookandfeelconfig.ui
@@ -17,9 +17,9 @@
<property name="caption">
<string>Look &amp; Feel</string>
</property>
- <property name="tqlayoutMargin" stdset="0">
+ <property name="layoutMargin" stdset="0">
</property>
- <property name="tqlayoutSpacing" stdset="0">
+ <property name="layoutSpacing" stdset="0">
</property>
<vbox>
<property name="name">
@@ -496,5 +496,5 @@
<slot access="protected">slotChanged()</slot>
</Q_SLOTS>
<pixmapfunction>DesktopIcon</pixmapfunction>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/ksysv/miscconfig.ui b/ksysv/miscconfig.ui
index 898a99a..6d45733 100644
--- a/ksysv/miscconfig.ui
+++ b/ksysv/miscconfig.ui
@@ -16,9 +16,9 @@
<property name="caption">
<string>Miscellaneous</string>
</property>
- <property name="tqlayoutMargin" stdset="0">
+ <property name="layoutMargin" stdset="0">
</property>
- <property name="tqlayoutSpacing" stdset="0">
+ <property name="layoutSpacing" stdset="0">
</property>
<vbox>
<property name="name">
@@ -37,7 +37,7 @@
<property name="title">
<string>Informational Messages</string>
</property>
- <property name="tqlayoutMargin" stdset="0">
+ <property name="layoutMargin" stdset="0">
</property>
<vbox>
<property name="name">
@@ -53,7 +53,7 @@
<property name="name">
<cstring>Layout12</cstring>
</property>
- <property name="tqlayoutSpacing" stdset="0">
+ <property name="layoutSpacing" stdset="0">
</property>
<hbox>
<property name="name">
@@ -182,5 +182,5 @@
<Q_SLOTS>
<slot access="protected">slotChanged()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/ksysv/pathconfig.ui b/ksysv/pathconfig.ui
index d0eb5d3..051e267 100644
--- a/ksysv/pathconfig.ui
+++ b/ksysv/pathconfig.ui
@@ -25,9 +25,9 @@
<property name="caption">
<string>Path Configuration</string>
</property>
- <property name="tqlayoutMargin" stdset="0">
+ <property name="layoutMargin" stdset="0">
</property>
- <property name="tqlayoutSpacing" stdset="0">
+ <property name="layoutSpacing" stdset="0">
</property>
<vbox>
<property name="name">
@@ -43,9 +43,9 @@
<property name="name">
<cstring>mServicesLayout</cstring>
</property>
- <property name="tqlayoutMargin" stdset="0">
+ <property name="layoutMargin" stdset="0">
</property>
- <property name="tqlayoutSpacing" stdset="0">
+ <property name="layoutSpacing" stdset="0">
</property>
<vbox>
<property name="name">
@@ -286,7 +286,7 @@
<slot access="protected">browseRunlevels()</slot>
<slot access="protected">slotChanged()</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
diff --git a/kuser/filessettings.ui b/kuser/filessettings.ui
index 3e88d29..abbafb6 100644
--- a/kuser/filessettings.ui
+++ b/kuser/filessettings.ui
@@ -221,5 +221,5 @@
</spacer>
</vbox>
</widget>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kuser/generalsettings.ui b/kuser/generalsettings.ui
index 873a347..ed650d2 100644
--- a/kuser/generalsettings.ui
+++ b/kuser/generalsettings.ui
@@ -236,5 +236,5 @@
<Q_SLOTS>
<slot>kcfg_createHomeDir_toggled( bool )</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kuser/kuser.cpp b/kuser/kuser.cpp
index f945b57..cfd3e49 100644
--- a/kuser/kuser.cpp
+++ b/kuser/kuser.cpp
@@ -203,7 +203,7 @@ bool KU::KUser::getDisabled() const
return isDisabled;
}
-// FreeBSD aptqparently uses the GECOS fields differently than other Unices.
+// FreeBSD apparently uses the GECOS fields differently than other Unices.
// Create some better named functions to make the FreeBSD code clear
const TQString &KU::KUser::getOffice() const
{
@@ -381,7 +381,7 @@ void KU::KUser::setDisabled(bool data)
isDisabled = data;
}
-// FreeBSD aptqparently uses the GECOS fields differently than other Unices.
+// FreeBSD apparently uses the GECOS fields differently than other Unices.
// Create some better named functions to make the FreeBSD code clear
void KU::KUser::setOffice(const TQString &data)
{
diff --git a/kuser/ldapsamba.ui b/kuser/ldapsamba.ui
index a80e4da..7d962f6 100644
--- a/kuser/ldapsamba.ui
+++ b/kuser/ldapsamba.ui
@@ -358,7 +358,7 @@
<Q_SLOTS>
<slot>kcfg_ldapsam_toggled( bool )</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>knuminput.h</includehint>
diff --git a/kuser/ldapsettings.ui b/kuser/ldapsettings.ui
index 9770719..575ea2f 100644
--- a/kuser/ldapsettings.ui
+++ b/kuser/ldapsettings.ui
@@ -274,5 +274,5 @@
<tabstop>kcfg_ldapshadow</tabstop>
<tabstop>kcfg_ldapcnfullname</tabstop>
</tabstops>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kuser/passwordpolicy.ui b/kuser/passwordpolicy.ui
index 638099b..a68d629 100644
--- a/kuser/passwordpolicy.ui
+++ b/kuser/passwordpolicy.ui
@@ -235,7 +235,7 @@
<Q_SLOTS>
<slot>kcfg_sneverexpire_toggled( bool )</slot>
</Q_SLOTS>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kdatetimewidget.h</includehint>
<includehint>kdatewidget.h</includehint>