wmbutton: initTooltip has no argument
The function initTooltip don't have arguments, so their can be removed. Now the function prototype has the void argument set.
This commit is contained in:
parent
1400c7f7a6
commit
501be68377
|
@ -219,7 +219,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
/* Initialize Tooltip Support */
|
/* Initialize Tooltip Support */
|
||||||
initTime();
|
initTime();
|
||||||
initTooltip(!Config.bTooltipDisable, Config.szTooltipFont, Config.bTooltipSwapColors);
|
initTooltip();
|
||||||
|
|
||||||
/* X Event Loop */
|
/* X Event Loop */
|
||||||
while (1) {
|
while (1) {
|
||||||
|
|
|
@ -88,7 +88,7 @@ int flush_expose(Window w);
|
||||||
|
|
||||||
|
|
||||||
/****** Tooltip Function Prototypes **********************************/
|
/****** Tooltip Function Prototypes **********************************/
|
||||||
void initTooltip();
|
void initTooltip(void);
|
||||||
void destroyTooltip(void);
|
void destroyTooltip(void);
|
||||||
int hasTooltipSupport(void);
|
int hasTooltipSupport(void);
|
||||||
void showTooltip(int nButton, int nMouseX, int nMouseY);
|
void showTooltip(int nButton, int nMouseX, int nMouseY);
|
||||||
|
|
Loading…
Reference in a new issue