mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
df5b7aedb9
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
14 lines
367 B
Diff
14 lines
367 B
Diff
# Author: Damyan Ivanov <dmn@debian.org>
|
|
# Description: fix methid declaration
|
|
# GCC 4.1 brafs if it is fully qualified
|
|
--- a/src/trayicon.h
|
|
+++ b/src/trayicon.h
|
|
@@ -38,7 +38,7 @@ public:
|
|
TrayIcon(DictGui *win);
|
|
~TrayIcon();
|
|
|
|
- Gtk::Window *TrayIcon::getWindow();
|
|
+ Gtk::Window *getWindow();
|
|
|
|
private:
|
|
virtual bool on_button_press(GdkEventButton* event);
|