diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | a4c7be3bc2b45c070d7f44c045fb1e1d4a42a55c (patch) | |
tree | aeeff22f82eabbf015f9eb0b2e7d77782f965029 | |
parent | 939093cf1af93204f6b8d38cc1397dd9d36e74f6 (diff) | |
download | adept-a4c7be3bc2b45c070d7f44c045fb1e1d4a42a55c.tar.gz adept-a4c7be3bc2b45c070d7f44c045fb1e1d4a42a55c.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/adept@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | adept/adept/acqprogress.cpp | 2 | ||||
-rw-r--r-- | adept/adept/acqprogresswidgetui.ui | 2 | ||||
-rw-r--r-- | adept/adept/dpkgpm-gui.cpp | 6 | ||||
-rw-r--r-- | adept/adept/dpkgpm.cpp | 2 | ||||
-rw-r--r-- | adept/libadept/acqprogress.cpp | 2 | ||||
-rw-r--r-- | adept/libadept/acqprogresswidgetui.ui | 2 | ||||
-rw-r--r-- | adept/libadept/dpkgpm-gui.cpp | 6 |
7 files changed, 11 insertions, 11 deletions
diff --git a/adept/adept/acqprogress.cpp b/adept/adept/acqprogress.cpp index 2573191..487e060 100644 --- a/adept/adept/acqprogress.cpp +++ b/adept/adept/acqprogress.cpp @@ -144,7 +144,7 @@ void AcqtqStatus::Start() { clear(); pkgAcquireStatus::Start(); - kdDebug() << "AcqtqStatus::Start ()" << endl; + kdDebug() << "AcqStatus::Start ()" << endl; _config -> Set ("APT::Fetcher::Select-Timeout-Usec", 100000); emit statusChanged( StWaiting ); triggerUpdate(); diff --git a/adept/adept/acqprogresswidgetui.ui b/adept/adept/acqprogresswidgetui.ui index 7f3be7a..b088228 100644 --- a/adept/adept/acqprogresswidgetui.ui +++ b/adept/adept/acqprogresswidgetui.ui @@ -22,7 +22,7 @@ <property name="margin"> <number>0</number> </property> - <widget class="adept::AcqtqStatus" row="0" column="0" rowspan="1" colspan="2"> + <widget class="adept::AcqStatus" row="0" column="0" rowspan="1" colspan="2"> <property name="name"> <cstring>m_status</cstring> </property> diff --git a/adept/adept/dpkgpm-gui.cpp b/adept/adept/dpkgpm-gui.cpp index 9a3fae8..14282cd 100644 --- a/adept/adept/dpkgpm-gui.cpp +++ b/adept/adept/dpkgpm-gui.cpp @@ -245,9 +245,9 @@ void DPkgPM::updatetqStatus( std::string pkg, std::string ev, std::string r ) msg = u8( i18n( "Purged %1" ) ); } - std::cerr << "updatetqStatus( " << pkg << ", " << ev << ", " << r << ")" << std::endl; - std::cerr << "updatetqStatus: msg = " << msg << std::endl; - std::cerr << "updatetqStatus: seen = " << m_seenOpCount + std::cerr << "updateStatus( " << pkg << ", " << ev << ", " << r << ")" << std::endl; + std::cerr << "updateStatus: msg = " << msg << std::endl; + std::cerr << "updateStatus: seen = " << m_seenOpCount << ", total = " << m_totalOpCount << std::endl; statusChanged( ( m_seenOpCount * 100 ) / m_totalOpCount, u8( msg ).tqarg( pkg ) + ( ( r == "") ? "" : (" (" + r + ")") ) ); diff --git a/adept/adept/dpkgpm.cpp b/adept/adept/dpkgpm.cpp index b229e54..5ba6457 100644 --- a/adept/adept/dpkgpm.cpp +++ b/adept/adept/dpkgpm.cpp @@ -324,7 +324,7 @@ void DPkgPM::dpkgMonitor () void DPkgPM::updatetqStatus( std::string pkg, std::string ev, std::string r ) { - //std::cerr << "DPkgPM::updatetqStatus " << pkg << " " << ev << " " << r + //std::cerr << "DPkgPM::updateStatus " << pkg << " " << ev << " " << r // << std::endl; if (ev.find("error") != string::npos) { char* list[5]; diff --git a/adept/libadept/acqprogress.cpp b/adept/libadept/acqprogress.cpp index 2f715c6..481e4e3 100644 --- a/adept/libadept/acqprogress.cpp +++ b/adept/libadept/acqprogress.cpp @@ -144,7 +144,7 @@ void AcqtqStatus::Start() { clear(); pkgAcquireStatus::Start(); - kdDebug() << "AcqtqStatus::Start ()" << endl; + kdDebug() << "AcqStatus::Start ()" << endl; _config -> Set ("APT::Fetcher::Select-Timeout-Usec", 100000); emit statusChanged( StWaiting ); triggerUpdate(); diff --git a/adept/libadept/acqprogresswidgetui.ui b/adept/libadept/acqprogresswidgetui.ui index 7f3be7a..b088228 100644 --- a/adept/libadept/acqprogresswidgetui.ui +++ b/adept/libadept/acqprogresswidgetui.ui @@ -22,7 +22,7 @@ <property name="margin"> <number>0</number> </property> - <widget class="adept::AcqtqStatus" row="0" column="0" rowspan="1" colspan="2"> + <widget class="adept::AcqStatus" row="0" column="0" rowspan="1" colspan="2"> <property name="name"> <cstring>m_status</cstring> </property> diff --git a/adept/libadept/dpkgpm-gui.cpp b/adept/libadept/dpkgpm-gui.cpp index 9a3fae8..14282cd 100644 --- a/adept/libadept/dpkgpm-gui.cpp +++ b/adept/libadept/dpkgpm-gui.cpp @@ -245,9 +245,9 @@ void DPkgPM::updatetqStatus( std::string pkg, std::string ev, std::string r ) msg = u8( i18n( "Purged %1" ) ); } - std::cerr << "updatetqStatus( " << pkg << ", " << ev << ", " << r << ")" << std::endl; - std::cerr << "updatetqStatus: msg = " << msg << std::endl; - std::cerr << "updatetqStatus: seen = " << m_seenOpCount + std::cerr << "updateStatus( " << pkg << ", " << ev << ", " << r << ")" << std::endl; + std::cerr << "updateStatus: msg = " << msg << std::endl; + std::cerr << "updateStatus: seen = " << m_seenOpCount << ", total = " << m_totalOpCount << std::endl; statusChanged( ( m_seenOpCount * 100 ) / m_totalOpCount, u8( msg ).tqarg( pkg ) + ( ( r == "") ? "" : (" (" + r + ")") ) ); |