diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:07:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:07:58 -0600 |
commit | d1a1ded7630ef9c2a69894f62c837f06bf77cc85 (patch) | |
tree | 887745a198486f55a8fe21cfd1a936b683ef421c /src/flowlayout.cpp | |
parent | 3f7edc4861d43739e97822be428197d23d81a979 (diff) | |
download | kima-d1a1ded7630ef9c2a69894f62c837f06bf77cc85.tar.gz kima-d1a1ded7630ef9c2a69894f62c837f06bf77cc85.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/flowlayout.cpp')
-rw-r--r-- | src/flowlayout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flowlayout.cpp b/src/flowlayout.cpp index 13490cf..2826a3e 100644 --- a/src/flowlayout.cpp +++ b/src/flowlayout.cpp @@ -161,12 +161,12 @@ bool FlowLayout::moveItem(const TQLayoutItem* which, const TQLayoutItem* relate, return true; } -void FlowLayout::updatePositions(KConfig * inKConfig){ +void FlowLayout::updatePositions(TDEConfig * inTDEConfig){ //kdDebug() << "updating all positions..." << endl; int pos = 0; TQPtrListIterator<TQLayoutItem> it(mLayoutItems); while(it.current() != NULL) { - mSources[it.current()]->setPosition(pos, inKConfig); + mSources[it.current()]->setPosition(pos, inTDEConfig); ++it; ++pos; } |