diff options
Diffstat (limited to 'plugins/TabSRMM/src/sendqueue.h')
-rw-r--r-- | plugins/TabSRMM/src/sendqueue.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/TabSRMM/src/sendqueue.h b/plugins/TabSRMM/src/sendqueue.h index 2944c7c4cd..1cfab48128 100644 --- a/plugins/TabSRMM/src/sendqueue.h +++ b/plugins/TabSRMM/src/sendqueue.h @@ -61,11 +61,11 @@ struct SendJob class SendQueue {
public:
enum {
- NR_SENDJOBS = 30,
- SQ_ERROR = 2,
- SQ_INPROGRESS = 1,
- SQ_UNDEFINED = 0
- };
+ NR_SENDJOBS = 30,
+ SQ_ERROR = 2,
+ SQ_INPROGRESS = 1,
+ SQ_UNDEFINED = 0
+ };
SendQueue()
{
@@ -78,7 +78,7 @@ public: ~SendQueue()
{
- for (int i=0; i < NR_SENDJOBS; i++)
+ for (int i = 0; i < NR_SENDJOBS; i++)
mir_free(m_jobs[i].szSendBuffer);
}
@@ -113,8 +113,8 @@ private: extern SendQueue *sendQueue;
-int TSAPI ActivateExistingTab (TContainerData *pContainer, HWND hwndChild);
-void TSAPI ShowMultipleControls (const HWND hwndDlg, const UINT * controls, int cControls, int state);
-void TSAPI HandleIconFeedback (TWindowData *dat, HICON iIcon);
+int TSAPI ActivateExistingTab(TContainerData *pContainer, HWND hwndChild);
+void TSAPI ShowMultipleControls(const HWND hwndDlg, const UINT * controls, int cControls, int state);
+void TSAPI HandleIconFeedback(TWindowData *dat, HICON iIcon);
#endif /* __SENDQUEUE_H */
|