diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-14 10:36:56 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-14 10:36:56 +0800 |
commit | c7437e1a93fc9ee7ab466aafe393daf967f3771c (patch) | |
tree | 7c1ef25ce7e1701dac8f5c71f55cd1ec4ab1a8b5 /interchange.hxx | |
parent | eaee50219505ff98d8758c0ef3d3c26b4593728b (diff) |
Requested path on flypage signal
as flypage is generic, so the caller will need to know the context.
Diffstat (limited to 'interchange.hxx')
-rw-r--r-- | interchange.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/interchange.hxx b/interchange.hxx index ae5d5e8..10e3ad5 100644 --- a/interchange.hxx +++ b/interchange.hxx @@ -66,13 +66,15 @@ namespace QInterchange { void order(QString const& sku); signals: - void gotFlypage(QString const& response); + void gotFlypage(QString const& path, + QString const& response); void gotCatalog(QString const& response); void gotProduct(QString const& response); void gotOrder(QString const& response); protected: - void emitFlypage(QString const& response); + void emitFlypage(QString const& path, + QString const& response); void emitCatalog(QString const& response); void emitProduct(QString const& response); void emitOrder(QString const& response); |