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:
authorCampbell Barton <ideasman42@gmail.com>2011-04-15 05:32:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-15 05:32:37 +0400
commita41c0c324a021a2614ef13eb2fe3459f58227abc (patch)
treebb98ecbebbd18a64a10b124fc29da3a04a8028f3 /intern/audaspace
parentd3e4c2243d61bdc7c6efe122394637b8bbaa0194 (diff)
fix [#26937] Radio button text truncation should start at beginning of string
ensure start of text is always visible. - also left in test for fix [#26933] which left it broken. - quiet warning in AUD Py API.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/Python/AUD_PyAPI.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/audaspace/Python/AUD_PyAPI.cpp b/intern/audaspace/Python/AUD_PyAPI.cpp
index 1fccafa2599..22376a2fcd1 100644
--- a/intern/audaspace/Python/AUD_PyAPI.cpp
+++ b/intern/audaspace/Python/AUD_PyAPI.cpp
@@ -2214,6 +2214,7 @@ Device_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
switch(device)
{
case AUD_DEVICE_NULL:
+ (void)specs; /* quiet warning when others disabled */
self->device = new AUD_NULLDevice();
break;
case AUD_DEVICE_OPENAL: