[kde-doc-english] [tellico] /: White-space cleanup
Robby Stephenson
robby at periapsis.org
Sun Jun 19 19:28:48 UTC 2016
Git commit a8df4d656bb72858f113d1fa2be58f1dd595d526 by Robby Stephenson.
Committed on 19/06/2016 at 19:28.
Pushed by rstephenson into branch 'master'.
White-space cleanup
M +0 -1 ChangeLog
M +0 -1 cmake/modules/FindPopplerQt5.cmake
M +0 -1 doc/CMakeLists.txt
M +0 -2 doc/configuration.docbook
M +0 -1 doc/fundamentals.docbook
M +0 -1 doc/hacking.docbook
M +0 -1 prepare_i18n_xslt
M +0 -3 src/barcode/barcode.cpp
M +0 -2 src/barcode/barcode.h
M +0 -1 src/borrowerdialog.cpp
M +0 -1 src/collections/CMakeLists.txt
M +0 -1 src/commands/CMakeLists.txt
M +0 -1 src/derivedvalue.h
M +0 -1 src/entrymatchdialog.cpp
M +0 -1 src/entryview.cpp
M +0 -1 src/fetch/bibliosharefetcher.cpp
M +0 -1 src/fetch/dblpfetcher.h
M +0 -1 src/fetch/moviemeterfetcher.cpp
M +0 -1 src/gui/CMakeLists.txt
M +0 -1 src/gui/countdelegate.cpp
M +0 -1 src/newstuff/CMakeLists.txt
M +0 -1 src/newstuff/tellico-template.knsrc
M +0 -1 src/tests/documenttest.cpp
M +0 -1 src/tests/filtertest.cpp
M +0 -1 src/translators/CMakeLists.txt
M +0 -1 src/translators/griffithimporter.cpp
M +0 -1 src/translators/xsltexporter.cpp
M +0 -1 src/utils/isbnvalidator.h
M +0 -1 src/utils/stringcomparison.cpp
http://commits.kde.org/tellico/a8df4d656bb72858f113d1fa2be58f1dd595d526
diff --git a/ChangeLog b/ChangeLog
index e4e0621..fed58a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2962,7 +2962,6 @@ Jake Maciejewski.
* Updated Norwegian translation, thanks to Leif Mathis Gaup.
-
2003-11-25 Robby Stephenson <robby at periapsis.org>
* Fixed bug in remembering visible columns for custom fields.
diff --git a/cmake/modules/FindPopplerQt5.cmake b/cmake/modules/FindPopplerQt5.cmake
index d09a7df..4b9a5ae 100644
--- a/cmake/modules/FindPopplerQt5.cmake
+++ b/cmake/modules/FindPopplerQt5.cmake
@@ -36,7 +36,6 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-
find_package(PkgConfig)
pkg_check_modules(PC_POPPLERQT5 QUIET poppler-qt5)
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 57093b3..dce4e32 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -1,4 +1,3 @@
-
kdoctools_create_handbook( index.docbook
INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en
SUBDIR tellico
diff --git a/doc/configuration.docbook b/doc/configuration.docbook
index de4f75f..ebeee2f 100644
--- a/doc/configuration.docbook
+++ b/doc/configuration.docbook
@@ -1,7 +1,6 @@
<chapter id="configuration">
<title>Configuration</title>
-
<para>
The <interface>Configuration Dialog</interface> contains all the options for
changing some of the default behaviour of &appname;.
@@ -317,7 +316,6 @@ the best known.
</para>
</sect3>
-
</sect2>
<!-- start of movie sources -->
diff --git a/doc/fundamentals.docbook b/doc/fundamentals.docbook
index 88ff2c5..b18bb17 100644
--- a/doc/fundamentals.docbook
+++ b/doc/fundamentals.docbook
@@ -539,7 +539,6 @@ which can then be exported to bibtex or Bibtexml format.
</para>
</tip>
-
<tip>
<para>If more than one field is formatted as a name, then an additional
group named "People" is added to the collection, allowing authors and editors
diff --git a/doc/hacking.docbook b/doc/hacking.docbook
index f7656e0..574dbbd 100644
--- a/doc/hacking.docbook
+++ b/doc/hacking.docbook
@@ -178,7 +178,6 @@ The type of collection is given in the type attribute of the collection element.
</tgroup>
</table>
-
</sect1>
<sect1 id="field-type-values">
diff --git a/prepare_i18n_xslt b/prepare_i18n_xslt
index 062d13c..f4fa797 100755
--- a/prepare_i18n_xslt
+++ b/prepare_i18n_xslt
@@ -45,7 +45,6 @@ def print_output(dir):
sys.stdout.write("\");\n")
extract_i18n(f)
-
if __name__ == "__main__":
print_output("xslt/entry-templates")
print_output("xslt/report-templates")
diff --git a/src/barcode/barcode.cpp b/src/barcode/barcode.cpp
index 8009f23..b8b3de9 100644
--- a/src/barcode/barcode.cpp
+++ b/src/barcode/barcode.cpp
@@ -111,7 +111,6 @@ void barcodeRecognitionThread::stop()
m_stop_mutex.unlock();
}
-
void barcodeRecognitionThread::recognizeBarcode( QImage img )
{
// attention! This function is called from GUI context
@@ -695,7 +694,6 @@ QVector<int> Decoder_EAN13::decode( QVector< QVector<int> > fields, int start_i,
if (left_numbers_i + 1 > end_i)
return QVector<int>();
-
// test the side from which we are reading the barcode:
for (int j = 0; j < 4; j++) {
current_number_field[j][0] = fields[left_numbers_i + j][0];
@@ -703,7 +701,6 @@ QVector<int> Decoder_EAN13::decode( QVector< QVector<int> > fields, int start_i,
}
MatchMakerResult matchMakerResult = recognizeNumber( current_number_field, BOTH_TABLES );
-
if (matchMakerResult.isEven()) {
// we are reading the barcode from the back side:
diff --git a/src/barcode/barcode.h b/src/barcode/barcode.h
index 23c417a..6350aed 100644
--- a/src/barcode/barcode.h
+++ b/src/barcode/barcode.h
@@ -107,8 +107,6 @@ namespace barcodeRecognition {
static MatchMakerResult recognizeSystemCode( bool parity_pattern[6] );
};
-
-
/** \brief this thread handles barcode recognition using webcams
* @author Sebastian Held <sebastian.held at gmx.de>
*/
diff --git a/src/borrowerdialog.cpp b/src/borrowerdialog.cpp
index 7a08cff..484d15b 100644
--- a/src/borrowerdialog.cpp
+++ b/src/borrowerdialog.cpp
@@ -22,7 +22,6 @@
* *
***************************************************************************/
-
#include "borrowerdialog.h"
#include "document.h"
#include "collection.h"
diff --git a/src/collections/CMakeLists.txt b/src/collections/CMakeLists.txt
index c68ee7d..3afce59 100644
--- a/src/collections/CMakeLists.txt
+++ b/src/collections/CMakeLists.txt
@@ -1,4 +1,3 @@
-
########### next target ###############
SET(collections_STAT_SRCS
diff --git a/src/commands/CMakeLists.txt b/src/commands/CMakeLists.txt
index 633f88a..c9f7555 100644
--- a/src/commands/CMakeLists.txt
+++ b/src/commands/CMakeLists.txt
@@ -1,4 +1,3 @@
-
########### next target ###############
SET(commands_STAT_SRCS
diff --git a/src/derivedvalue.h b/src/derivedvalue.h
index df739ea..88af902 100644
--- a/src/derivedvalue.h
+++ b/src/derivedvalue.h
@@ -59,4 +59,3 @@ private:
#endif
-
diff --git a/src/entrymatchdialog.cpp b/src/entrymatchdialog.cpp
index 8d68039..9c6eb8b 100644
--- a/src/entrymatchdialog.cpp
+++ b/src/entrymatchdialog.cpp
@@ -130,7 +130,6 @@ void EntryMatchDialog::slotShowEntry() {
m_entryView->showEntry(m_itemEntries[item]);
}
-
Tellico::EntryUpdater::UpdateResult EntryMatchDialog::updateResult() const {
QTreeWidgetItem* item = m_treeWidget->currentItem();
if(!item) {
diff --git a/src/entryview.cpp b/src/entryview.cpp
index 3cc9522..97594ff 100644
--- a/src/entryview.cpp
+++ b/src/entryview.cpp
@@ -364,7 +364,6 @@ void EntryView::setXSLTOptions(const Tellico::StyleOptions& opt_) {
m_handler->addStringParam("imgdir", QFile::encodeName(opt_.imgDir));
}
-
void EntryView::slotResetColors() {
// this will delete and reread the default colors, assuming they changed
// better to do this elsewhere, but do it here for now
diff --git a/src/fetch/bibliosharefetcher.cpp b/src/fetch/bibliosharefetcher.cpp
index 5c771d8..401ce8b 100644
--- a/src/fetch/bibliosharefetcher.cpp
+++ b/src/fetch/bibliosharefetcher.cpp
@@ -92,7 +92,6 @@ QUrl BiblioShareFetcher::searchUrl() {
return u;
}
-
Tellico::Data::EntryPtr BiblioShareFetcher::fetchEntryHookData(Data::EntryPtr entry_) {
Q_ASSERT(entry_);
diff --git a/src/fetch/dblpfetcher.h b/src/fetch/dblpfetcher.h
index 623c71c..de40fcb 100644
--- a/src/fetch/dblpfetcher.h
+++ b/src/fetch/dblpfetcher.h
@@ -61,7 +61,6 @@ public:
*/
virtual Fetch::ConfigWidget* configWidget(QWidget* parent) const;
-
class ConfigWidget : public Fetch::ConfigWidget {
public:
explicit ConfigWidget(QWidget* parent_, const DBLPFetcher* fetcher = 0);
diff --git a/src/fetch/moviemeterfetcher.cpp b/src/fetch/moviemeterfetcher.cpp
index 9e739e5..51b50b7 100644
--- a/src/fetch/moviemeterfetcher.cpp
+++ b/src/fetch/moviemeterfetcher.cpp
@@ -261,7 +261,6 @@ void MovieMeterFetcher::populateEntry(Data::EntryPtr entry_, const QVariantMap&
}
entry_->setField(QLatin1String("cast"), castList.join(FieldFormat::rowDelimiterString()));
-
if(entry_->collection()->hasField(QLatin1String("moviemeter"))) {
entry_->setField(QLatin1String("moviemeter"), value(resultMap_, "url"));
}
diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt
index abd3da3..ee4fed2 100644
--- a/src/gui/CMakeLists.txt
+++ b/src/gui/CMakeLists.txt
@@ -1,4 +1,3 @@
-
########### next target ###############
SET(gui_STAT_SRCS
diff --git a/src/gui/countdelegate.cpp b/src/gui/countdelegate.cpp
index 6b4b7a4..f15e4da 100644
--- a/src/gui/countdelegate.cpp
+++ b/src/gui/countdelegate.cpp
@@ -57,7 +57,6 @@ void CountDelegate::initStyleOption(QStyleOptionViewItem* option_,
}
}
-
void CountDelegate::paint(QPainter* painter_,
const QStyleOptionViewItem& option_,
const QModelIndex& index_) const {
diff --git a/src/newstuff/CMakeLists.txt b/src/newstuff/CMakeLists.txt
index 1115c72..5a7f696 100644
--- a/src/newstuff/CMakeLists.txt
+++ b/src/newstuff/CMakeLists.txt
@@ -1,4 +1,3 @@
-
########### next target ###############
SET(newstuff_STAT_SRCS
diff --git a/src/newstuff/tellico-template.knsrc b/src/newstuff/tellico-template.knsrc
index 753b445..65b4c9b 100644
--- a/src/newstuff/tellico-template.knsrc
+++ b/src/newstuff/tellico-template.knsrc
@@ -18,4 +18,3 @@ Uncompress=never
InstallationCommand=dbus-send --type=method_call --dest=org.kde.tellico /NewStuff org.kde.tellico.newstuff.installTemplate string:%f
UninstallCommand=dbus-send --type=method_call --dest=org.kde.tellico /NewStuff org.kde.tellico.newstuff.removeTemplate string:%f
-
diff --git a/src/tests/documenttest.cpp b/src/tests/documenttest.cpp
index 671c77f..d945573 100644
--- a/src/tests/documenttest.cpp
+++ b/src/tests/documenttest.cpp
@@ -51,7 +51,6 @@ void DocumentTest::testImageLocalDirectory() {
QString tempDirName;
-
QTemporaryDir tempDir;
QVERIFY(tempDir.isValid());
tempDir.setAutoRemove(true);
diff --git a/src/tests/filtertest.cpp b/src/tests/filtertest.cpp
index 51259c6..e926074 100644
--- a/src/tests/filtertest.cpp
+++ b/src/tests/filtertest.cpp
@@ -137,7 +137,6 @@ void FilterTest::testFilter() {
Tellico::Data::Field::Date));
coll->addField(date);
-
Tellico::FilterRule* rule6 = new Tellico::FilterRule(QLatin1String("date"),
QLatin1String("2011-01-24"),
Tellico::FilterRule::FuncAfter);
diff --git a/src/translators/CMakeLists.txt b/src/translators/CMakeLists.txt
index 09ef9c4..75999c7 100644
--- a/src/translators/CMakeLists.txt
+++ b/src/translators/CMakeLists.txt
@@ -1,4 +1,3 @@
-
########### next target ###############
SET(translators_STAT_SRCS
diff --git a/src/translators/griffithimporter.cpp b/src/translators/griffithimporter.cpp
index b608a41..b9bba77 100644
--- a/src/translators/griffithimporter.cpp
+++ b/src/translators/griffithimporter.cpp
@@ -43,7 +43,6 @@ GriffithImporter::GriffithImporter(const QUrl& url_) : XSLTImporter(url_) {
}
}
-
GriffithImporter::~GriffithImporter() {
}
diff --git a/src/translators/xsltexporter.cpp b/src/translators/xsltexporter.cpp
index e1d7da8..9ab4920 100644
--- a/src/translators/xsltexporter.cpp
+++ b/src/translators/xsltexporter.cpp
@@ -54,7 +54,6 @@ QString XSLTExporter::fileFilter() const {
return i18n("All Files") + QLatin1String(" (*)");
}
-
bool XSLTExporter::exec() {
QUrl u = m_URLRequester->url();
if(u.isEmpty() || !u.isValid()) {
diff --git a/src/utils/isbnvalidator.h b/src/utils/isbnvalidator.h
index 0208087..cd8c0c2 100644
--- a/src/utils/isbnvalidator.h
+++ b/src/utils/isbnvalidator.h
@@ -150,7 +150,6 @@ private:
QValidator::State validate10(QString& input, int& pos) const;
QValidator::State validate13(QString& input, int& pos) const;
-
/**
* This function calculates and returns the ISBN checksum. The
* algorithm is based on some code by Andrew Plotkin, available at
diff --git a/src/utils/stringcomparison.cpp b/src/utils/stringcomparison.cpp
index 3f015a4..6623bea 100644
--- a/src/utils/stringcomparison.cpp
+++ b/src/utils/stringcomparison.cpp
@@ -78,7 +78,6 @@ int Tellico::BoolComparison::compare(const QString& str1_, const QString& str2_)
return str1_.compare(str2_);
}
-
Tellico::TitleComparison::TitleComparison() : StringComparison() {
}
More information about the kde-doc-english
mailing list