[CONFIGURATION]
* BUG: Compiles qt4 directory recursively. [GB.QT] * NEW: The default image format of gb.qt is BGRA. [GB.QT4] * BUG: Fix GridView last column automatic stretching. * NEW: The default image format of gb.qt4 is BGRA. git-svn-id: svn://localhost/gambas/trunk@1807 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
abf033e85a
commit
b6b2e0425e
3 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS = main @bzlib2_dir@ @zlib_dir@ @mysql_dir@ @odbc_dir@ @postgresql_dir@ @sqlite3_dir@ @sqlite2_dir@ @firebird_dir@ @gtk_dir@ @net_dir@ @curl_dir@ @smtp_dir@ @pcre_dir@ @qt_dir@ @qte_dir@ @kde_dir@ @sdl_dir@ @sdlsound_dir@ @xml_dir@ @v4l_dir@ @crypt_dir@ @opengl_dir@ @corba_dir@ @pdf_dir@ @gtksvg_dir@ @desktop_dir@ comp app help examples
|
||||
SUBDIRS = main @bzlib2_dir@ @zlib_dir@ @mysql_dir@ @odbc_dir@ @postgresql_dir@ @sqlite3_dir@ @sqlite2_dir@ @firebird_dir@ @gtk_dir@ @net_dir@ @curl_dir@ @smtp_dir@ @pcre_dir@ @qt_dir@ @qte_dir@ @kde_dir@ @sdl_dir@ @sdlsound_dir@ @xml_dir@ @v4l_dir@ @crypt_dir@ @opengl_dir@ @corba_dir@ @pdf_dir@ @gtksvg_dir@ @desktop_dir@ @qt4_dir@ comp app help examples
|
||||
|
||||
EXTRA_DIST = component.am README README.*[^~] TODO TEMPLATE reconf reconf-all
|
||||
|
||||
|
|
|
@ -369,7 +369,7 @@ void MyTable::setColumnWidth(int col, int width)
|
|||
else
|
||||
Q3Table::setColumnWidth(col, width);
|
||||
|
||||
if (col == (numCols() - 1))
|
||||
if (col == (numCols() - 1) && !_updating_last_column)
|
||||
_last_col_width = columnWidth(numCols() - 1);
|
||||
}
|
||||
|
||||
|
|
|
@ -928,6 +928,7 @@ int EXPORT GB_INIT(void)
|
|||
|
||||
GB.LoadComponent("gb.draw");
|
||||
GB.GetInterface("gb.image", IMAGE_INTERFACE_VERSION, &IMAGE);
|
||||
IMAGE.SetDefaultFormat(GB_IMAGE_BGRA);
|
||||
DRAW_init();
|
||||
|
||||
CLASS_Control = GB.FindClass("Control");
|
||||
|
|
Loading…
Reference in a new issue