diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-26 19:40:28 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-26 19:40:28 +0200 |
| commit | caf38bbfe3279b9bea861e4d5b70f3c50c6e1755 (patch) | |
| tree | 5ed7f83b0bdb584422f2e99489cfc81aac645500 /lib/CommLayer/CommLayerInner.h | |
| parent | fca6fa371006186d12a720cd48c270789c67d2e6 (diff) | |
| download | abrt-caf38bbfe3279b9bea861e4d5b70f3c50c6e1755.tar.gz abrt-caf38bbfe3279b9bea861e4d5b70f3c50c6e1755.tar.xz abrt-caf38bbfe3279b9bea861e4d5b70f3c50c6e1755.zip | |
add job ids (== thread ids) to warning/update DBus messages
renamed:
comm_layer_inner_warning -> warn_client
comm_layer_inner_status -> update_client
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/CommLayer/CommLayerInner.h')
| -rw-r--r-- | lib/CommLayer/CommLayerInner.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CommLayer/CommLayerInner.h b/lib/CommLayer/CommLayerInner.h index 43faac0..2b4f63a 100644 --- a/lib/CommLayer/CommLayerInner.h +++ b/lib/CommLayer/CommLayerInner.h @@ -3,16 +3,17 @@ #include "Observer.h" -void comm_layer_inner_init(CObserver *pObs); +void init_daemon_logging(CObserver *pObs); /* Ask a client to warn the user about a non-fatal, but unexpected condition. * In GUI, it will usually be presented as a popup message. */ -void comm_layer_inner_warning(const std::string& pMessage); +void warn_client(const std::string& pMessage); /* Logs a message to a client. * In UI, it will usually appear as a new status line message in GUI, * or as a new message line in CLI. */ -void comm_layer_inner_status(const std::string& pMessage); +void update_client(const std::string& pMessage); #endif /* COMMLAYERINNER_H_ */ + |
