Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-04-20 07:29:45 +0400
committerJoshua Leung <aligorith@gmail.com>2009-04-20 07:29:45 +0400
commit387aad7275aaef33c3ac5eae9f917da896da2f9d (patch)
treef5aa978f1911fad4c8ef64932372896b2b8b5ced /source/blender/editors
parent514654009570cba78e5215f524714adf5f91812a (diff)
A bit more F-Modifier wrapping...
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_graph/graph_buttons.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index 82a6e476abc..357079a2c3c 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -162,20 +162,6 @@ static void do_graph_region_driver_buttons(bContext *C, void *arg, int event)
WM_event_add_notifier(C, NC_SCENE, scene);
}
-#if 0 // XXX replace this for RNA
-/* callback to copy over RNA-Paths accordingly */
-static void driver_rnapath_copy_cb (bContext *C, void *driver_v, void *strbuf_v)
-{
- ChannelDriver *driver= (ChannelDriver *)driver_v;
- char *stringBuf= (char *)strbuf_v;
-
- /* copy over string */
- if (driver->rna_path)
- MEM_freeN(driver->rna_path);
- driver->rna_path= BLI_strdupn(stringBuf, strlen(stringBuf));
-}
-#endif
-
/* callback to remove the active driver */
static void driver_remove_cb (bContext *C, void *ale_v, void *dummy_v)
{