summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-03-14 20:18:05 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-03-14 20:18:05 +0000
commit11af3f8fdf1daff7a2eda1ce4b2c4926229e4bc0 (patch)
tree52cdd0e01775fbcb2b515749d7f4d3cd8baf4d4f /libs/pbd
parentfb6565456e2070f088b2387923d78934ac8ab957 (diff)
enable icon-start-from-.ardour-file to work on OS X; properly install apple event handlers; change plugin add logic to avoid asking for stream counts before they would be configured; fix up new session dialog to not use manage(), and thus not throw away widgets when their page is hidden (by removal) in the tabbed browser
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3144 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/SConscript1
-rw-r--r--libs/pbd/misc.c21
-rw-r--r--libs/pbd/pbd/misc.h15
3 files changed, 0 insertions, 37 deletions
diff --git a/libs/pbd/SConscript b/libs/pbd/SConscript
index 9e09d5513e..a0065f09bd 100644
--- a/libs/pbd/SConscript
+++ b/libs/pbd/SConscript
@@ -29,7 +29,6 @@ dmalloc.cc
error.cc
fpu.cc
id.cc
-misc.c
mountpoint.cc
path.cc
pathscanner.cc
diff --git a/libs/pbd/misc.c b/libs/pbd/misc.c
deleted file mode 100644
index 34e5888687..0000000000
--- a/libs/pbd/misc.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <pbd/misc.h>
-
-#ifdef GTKOSX
-#include <AppKit/AppKit.h>
-#endif
-
-void
-disable_screen_updates ()
-{
-#ifdef GTKOSX
- // NSDisableScreenUpdates ();
-#endif
-}
-
-void
-enable_screen_updates ()
-{
-#ifdef GTKOSX
- // NSEnableScreenUpdates();
-#endif
-}
diff --git a/libs/pbd/pbd/misc.h b/libs/pbd/pbd/misc.h
deleted file mode 100644
index 306c00683e..0000000000
--- a/libs/pbd/pbd/misc.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef __pbd_misc_h__
-#define __pbd_misc_h__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
- void disable_screen_updates ();
- void enable_screen_updates ();
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __pbd_misc_h__ */