[fondue-commits] [SCM] Fondue Font Editor branch, master, updated. 24fc501e24bdc3c8c80210c7b590d69ba379b6f7
Eugeniy Meshcheryakov
eugen at debian.org
Wed Aug 22 19:55:29 UTC 2007
The branch, master has been updated
via 24fc501e24bdc3c8c80210c7b590d69ba379b6f7 (commit)
from ddf8a6d4a949a795d7e4188d82e3d7823f503284 (commit)
- Log -----------------------------------------------------------------
commit 24fc501e24bdc3c8c80210c7b590d69ba379b6f7
Author: Eugeniy Meshcheryakov <eugen at debian.org>
Date: Wed Aug 22 21:55:21 2007 +0200
fix incorrect use of functions like signals
-----------------------------------------------------------------------
Summary of changes:
gui/unicodeproxymodel.cxx | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gui/unicodeproxymodel.cxx b/gui/unicodeproxymodel.cxx
index 609e924..44127bd 100644
--- a/gui/unicodeproxymodel.cxx
+++ b/gui/unicodeproxymodel.cxx
@@ -183,10 +183,10 @@ void UnicodeProxyModel::parentDataChanged(const QModelIndex &topLeft, const QMod
else {
// encoded glyph became unencoded
// move glyph to the end of the list
- emit beginInsertRows(QModelIndex(), MAX_UNICODE + unencodedGlyphs + 1,
+ beginInsertRows(QModelIndex(), MAX_UNICODE + unencodedGlyphs + 1,
MAX_UNICODE + unencodedGlyphs + 1);
unencodedGlyphs++;
- emit endInsertRows();
+ endInsertRows();
emit layoutAboutToBeChanged();
moveRow(i, proxyRow, MAX_UNICODE + unencodedGlyphs);
emit layoutChanged();
@@ -200,10 +200,10 @@ void UnicodeProxyModel::parentDataChanged(const QModelIndex &topLeft, const QMod
moveRow(i, proxyRow, newUnicode);
emit layoutChanged();
shrink(proxyRow);
- emit beginRemoveRows(QModelIndex(), MAX_UNICODE + unencodedGlyphs,
+ beginRemoveRows(QModelIndex(), MAX_UNICODE + unencodedGlyphs,
MAX_UNICODE + unencodedGlyphs);
unencodedGlyphs--;
- emit endRemoveRows();
+ endRemoveRows();
}
}
}
--
Fondue Font Editor
More information about the fondue-commits
mailing list