Use qt4-compatible connect() syntax.

Signed-off-by: Juergen Spitzmueller <spitz@lyx.org>
This commit is contained in:
Juergen Spitzmueller 2018-01-12 15:41:27 +01:00
parent 57d6835a90
commit aab58fed6b
2 changed files with 7 additions and 5 deletions

View File

@ -1039,9 +1039,11 @@ CompressorProxy::CompressorProxy(GuiWorkArea * wa) : QObject(wa)
{
qRegisterMetaType<KeySymbol>("KeySymbol");
qRegisterMetaType<KeyModifier>("KeyModifier");
connect(wa, &GuiWorkArea::compressKeySym, this, &CompressorProxy::slot,
connect(wa, SIGNAL(compressKeySym(KeySymbol, KeyModifier, bool)),
this, SLOT(slot(KeySymbol, KeyModifier, bool)),
Qt::QueuedConnection);
connect(this, &CompressorProxy::signal, wa, &GuiWorkArea::processKeySym);
connect(this, SIGNAL(signal(KeySymbol, KeyModifier)),
wa, SLOT(processKeySym(KeySymbol, KeyModifier)));
}

View File

@ -68,9 +68,6 @@ public:
/// return true if the key is part of a shortcut
bool queryKeySym(KeySymbol const & key, KeyModifier mod) const;
/// Process Key pressed event.
/// This needs to be public because it is accessed externally by GuiView.
void processKeySym(KeySymbol const & key, KeyModifier mod);
bool inDialogMode() const;
void setDialogMode(bool mode);
@ -86,6 +83,9 @@ public:
double pixelRatio() const;
public Q_SLOTS:
/// Process Key pressed event.
/// This needs to be public because it is accessed externally by GuiView.
void processKeySym(KeySymbol const & key, KeyModifier mod);
///
void stopBlinkingCaret();
///