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:
authorTon Roosendaal <ton@blender.org>2007-01-12 14:13:34 +0300
committerTon Roosendaal <ton@blender.org>2007-01-12 14:13:34 +0300
commit765e464a71a339e15454ca35621c8f4923b64869 (patch)
treea1381301d062d14ccc0508353012560d34a453ae
parente9291b78e2346c319c9bc1e31ae41e6b69859380 (diff)
Bugfixes:
- the "number/string button widget", or sbutton(), button() and fbutton() calls, were using button event '1' or '2' to denote events, whilst this could also be an other defined event. Bug showed as unwanted display changes in ipo window after using marker renaming for example. - slider buttons for Action Window were expecting ints, while using short. - cleanup in blender/src for warnings
-rw-r--r--source/blender/src/buttons_shading.c2
-rw-r--r--source/blender/src/drawaction.c4
-rw-r--r--source/blender/src/editfont.c6
-rw-r--r--source/blender/src/editipo.c2
-rw-r--r--source/blender/src/editmesh.c2
-rw-r--r--source/blender/src/edittime.c6
-rw-r--r--source/blender/src/toolbox.c14
7 files changed, 18 insertions, 18 deletions
diff --git a/source/blender/src/buttons_shading.c b/source/blender/src/buttons_shading.c
index 6998f8ec19b..aa8ce448c52 100644
--- a/source/blender/src/buttons_shading.c
+++ b/source/blender/src/buttons_shading.c
@@ -1224,7 +1224,7 @@ static void texture_panel_image_map(Tex *tex)
uiDefButBitS(block, TOG, TEX_NEGALPHA, B_TEXPRV, "NegAlpha", 210, 160, 100, 20, &tex->flag, 0, 0, 0, 0, "Click to invert the alpha values");
uiBlockEndAlign(block);
- uiDefButF(block, NUM, B_TEXPRV, "Filter :", 10,120,150,20, &tex->filtersize, 0.1, 25.0, 0, 3, "Sets the filter size used by mipmap and interpol");
+ uiDefButF(block, NUM, B_TEXPRV, "Filter :", 10,120,150,20, &tex->filtersize, 0.1, 25.0, 10, 3, "Sets the filter size used by mipmap and interpol");
uiDefButBitS(block, TOG, TEX_NORMALMAP, B_NOP, "Normal Map", 160,120,150,20, &tex->imaflag,
0, 0, 0, 0, "Use image RGB values for normal mapping");
diff --git a/source/blender/src/drawaction.c b/source/blender/src/drawaction.c
index 515d2378491..e0597b0db04 100644
--- a/source/blender/src/drawaction.c
+++ b/source/blender/src/drawaction.c
@@ -130,7 +130,7 @@ static void meshactionbuts(SpaceAction *saction, Object *ob, Key *key)
if (!(G.saction->flag & SACTION_SLIDERS)) {
ACTWIDTH = NAMEWIDTH;
- but=uiDefIconButBitI(block, TOG, SACTION_SLIDERS, B_REDR,
+ but=uiDefIconButBitS(block, TOG, SACTION_SLIDERS, B_REDR,
ICON_DISCLOSURE_TRI_RIGHT,
NAMEWIDTH - XIC - 5, y + CHANNELHEIGHT,
XIC,YIC-2,
@@ -141,7 +141,7 @@ static void meshactionbuts(SpaceAction *saction, Object *ob, Key *key)
}
else {
- but= uiDefIconButBitI(block, TOG, SACTION_SLIDERS, B_REDR,
+ but= uiDefIconButBitS(block, TOG, SACTION_SLIDERS, B_REDR,
ICON_DISCLOSURE_TRI_DOWN,
NAMEWIDTH - XIC - 5, y + CHANNELHEIGHT,
XIC,YIC-2,
diff --git a/source/blender/src/editfont.c b/source/blender/src/editfont.c
index 9447ef59bbb..a3de5d03283 100644
--- a/source/blender/src/editfont.c
+++ b/source/blender/src/editfont.c
@@ -945,7 +945,7 @@ void do_textedit(unsigned short event, short val, unsigned long _ascii)
void paste_unicodeText(char *filename)
{
- Curve *cu;
+ Curve *cu= G.obedit->data;
int filelen, doit= 0;
char *strp;
FILE *fp = NULL;
@@ -953,7 +953,6 @@ void paste_unicodeText(char *filename)
fp= fopen(filename, "r");
if(fp) {
- cu= G.obedit->data;
fseek( fp, 0L, SEEK_END );
filelen = ftell( fp );
@@ -993,7 +992,7 @@ void paste_unicodeText(char *filename)
void paste_editText(void)
{
- Curve *cu;
+ Curve *cu= G.obedit->data;
int filelen, doit= 0;
char *strp;
FILE *fp = NULL;
@@ -1020,7 +1019,6 @@ void paste_editText(void)
#endif
if(fp) {
- cu= G.obedit->data;
fseek(fp, 0L, SEEK_END);
filelen = ftell( fp );
diff --git a/source/blender/src/editipo.c b/source/blender/src/editipo.c
index bc22453c46e..f040abe7343 100644
--- a/source/blender/src/editipo.c
+++ b/source/blender/src/editipo.c
@@ -3084,7 +3084,7 @@ void clean_ipo(void)
ok= fbutton(&G.scene->toolsettings->clean_thresh,
0.0000001f, 1.0, 0.001, 0.1,
- "Clean Threshold");
+ "Threshold");
if (!ok) return;
get_status_editipo();
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index 3dd4539febc..fd039e8e003 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -104,6 +104,8 @@
#include "BDR_editface.h"
#include "BDR_vpaint.h"
+#include "LBM_fluidsim.h"
+
#include "multires.h"
#include "mydevice.h"
#include "blendef.h"
diff --git a/source/blender/src/edittime.c b/source/blender/src/edittime.c
index 990bcd72ecf..7725131edea 100644
--- a/source/blender/src/edittime.c
+++ b/source/blender/src/edittime.c
@@ -122,17 +122,17 @@ void rename_marker(void)
{
TimeMarker *marker;
char name[64];
-
+
for(marker= G.scene->markers.first; marker; marker= marker->next) {
if(marker->flag & SELECT) {
- sprintf(name, marker->name);
+ strcpy(name, marker->name);
if (sbutton(name, 0, sizeof(name)-1, "Name: "))
BLI_strncpy(marker->name, name, sizeof(marker->name));
break;
}
}
- BIF_undo_push("Rename Marker");
+// BIF_undo_push("Rename Marker");
}
/* duplicate selected TimeMarkers */
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index 61ec55231bc..adcc6f68b4d 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -275,7 +275,7 @@ short button(short *var, short min, short max, char *str)
y1=mval[1]-20;
uiDefButS(block, NUM, 0, str, (short)(x1+5),(short)(y1+10),125,20, var,(float)min,(float)max, 0, 0, "");
- uiDefBut(block, BUT, 1, "OK", (short)(x1+136),(short)(y1+10),25,20, NULL, 0, 0, 0, 0, "");
+ uiDefBut(block, BUT, 32767, "OK", (short)(x1+136),(short)(y1+10),25,20, NULL, 0, 0, 0, 0, "");
uiBoundsBlock(block, 5);
@@ -307,12 +307,12 @@ short sbutton(char *var, float min, float max, char *str)
x1=mval[0]-150;
y1=mval[1]-20;
- uiDefButC(block, TEX, 2, str, x1+5,y1+10,125,20, var,(float)min,(float)max, 0, 0, "");
- uiDefBut(block, BUT, 1, "OK", x1+136,y1+10,25,20, NULL, 0, 0, 0, 0, "");
+ uiDefButC(block, TEX, 32766, str, x1+5,y1+10,125,20, var,(float)min,(float)max, 0, 0, "");
+ uiDefBut(block, BUT, 32767, "OK", x1+136,y1+10,25,20, NULL, 0, 0, 0, 0, "");
uiBoundsBlock(block, 5);
- mainqenter_ext(BUT_ACTIVATE, 2, 0); /* note, button id '2' is asking for errors some day! */
+ mainqenter_ext(BUT_ACTIVATE, 32766, 0); /* note, button id '32766' is asking for errors some day! */
ret= uiDoBlocks(&listb, 0);
if(ret==UI_RETURN_OK) return 1;
@@ -342,7 +342,7 @@ short fbutton(float *var, float min, float max, float a1, float a2, char *str)
y1=mval[1]-20;
uiDefButF(block, NUM, 0, str,(short)(x1+5),(short)(y1+10),125,20, var, min, max, a1, a2, "");
- uiDefBut(block, BUT, 1, "OK",(short)(x1+136),(short)(y1+10), 35, 20, NULL, 0, 0, 0, 0, "");
+ uiDefBut(block, BUT, 32767, "OK",(short)(x1+136),(short)(y1+10), 35, 20, NULL, 0, 0, 0, 0, "");
uiBoundsBlock(block, 2);
@@ -402,7 +402,7 @@ int movetolayer_buts(unsigned int *lay, char *title)
uiBlockEndAlign(block);
x1-= 5;
- uiDefBut(block, BUT, 1, "OK", (short)(x1+10*dx+10), (short)y1, (short)(3*dx), (short)(2*dy), NULL, 0, 0, 0, 0, "");
+ uiDefBut(block, BUT, 32767, "OK", (short)(x1+10*dx+10), (short)y1, (short)(3*dx), (short)(2*dy), NULL, 0, 0, 0, 0, "");
uiBoundsBlock(block, 2);
@@ -452,7 +452,7 @@ int movetolayer_short_buts(short *lay, char *title)
uiBlockEndAlign(block);
x1-= 5;
- uiDefBut(block, BUT, 1, "OK", (short)(x1+8*dx+10), (short)y1, (short)(3*dx), (short)(2*dy), NULL, 0, 0, 0, 0, "");
+ uiDefBut(block, BUT, 32767, "OK", (short)(x1+8*dx+10), (short)y1, (short)(3*dx), (short)(2*dy), NULL, 0, 0, 0, 0, "");
uiBoundsBlock(block, 2);