Changeset 53

Show
Ignore:
Timestamp:
11/09/07 01:50:39
Author:
pvanhoof
Message:

Some minor fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configure.ac

    r51 r53  
    1414AC_HEADER_STDC 
    1515AC_PROG_LIBTOOL 
     16PKG_PROG_PKG_CONFIG 
    1617 
    1718tinymail_platform="none" 
     
    2021for pc in $tinymail_platform_pcs; do 
    2122        mypc=`echo $pc | cut -d % -f -1` 
    22         if pkg-config --exists $mypc; then 
     23        PKG_CHECK_EXISTS($mypc, found=yes, found=0) 
     24        if test x$found = xyes; then 
    2325                tinymail_platform=$mypc 
    2426                tinymail_addcfags=`echo $pc | cut -d % -f 2` 
  • trunk/src/tmut-menu-view.c

    r52 r53  
    107107        TnyFolderStore *into = tmut_folder_selector_get_current (TMUT_FOLDER_SELECTOR (widget)); 
    108108 
     109        tmut_shell_window_back (priv->shell); 
     110 
    109111        if (into)  
    110112        { 
     
    140142        } 
    141143 
    142         tmut_shell_window_back (priv->shell); 
    143144 
    144145        return;