By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 860
Collapse All | Expand All

(-)tdebase/tqt3integration/utils/qt/in/qtkdeintegration_x11_1.cpp (-2 / +2 lines)
Lines 41-49 Link Here
41
41
42
static TQCString findLibrary()
42
static TQCString findLibrary()
43
    {
43
    {
44
    if( getenv( "KDE_FULL_SESSION" ) == NULL )
44
    if( getenv( "TDE_FULL_SESSION" ) == NULL )
45
        return "";
45
        return "";
46
    if( getenv( "KDE_FULL_SESSION" )[ 0 ] != 't' && getenv( "KDE_FULL_SESSION" )[ 0 ] != '1' )
46
    if( getenv( "TDE_FULL_SESSION" )[ 0 ] != 't' && getenv( "TDE_FULL_SESSION" )[ 0 ] != '1' )
47
        return "";
47
        return "";
48
    if( getenv( "TQT_NO_KDE_INTEGRATION" ) == NULL
48
    if( getenv( "TQT_NO_KDE_INTEGRATION" ) == NULL
49
        || getenv( "TQT_NO_KDE_INTEGRATION" )[ 0 ] == '0' )
49
        || getenv( "TQT_NO_KDE_INTEGRATION" )[ 0 ] == '0' )
(-)thirdparty/libreoffice/3.3.2/patches/libreoffice-trinity.diff (-1 / +1 lines)
Lines 15761-15767 Link Here
15761
++
15761
++
15762
+ static bool is_kde4_desktop( Display* pDisplay )
15762
+ static bool is_kde4_desktop( Display* pDisplay )
15763
+ {
15763
+ {
15764
+     if ( NULL != getenv( "KDE_FULL_SESSION" ) )
15764
+     if ( NULL != getenv( "TDE_FULL_SESSION" ) )
15765
+@@ -265,6 +275,8 @@
15765
+@@ -265,6 +275,8 @@
15766
+         
15766
+         
15767
+         if ( aOver.equalsIgnoreAsciiCase( "cde" ) )
15767
+         if ( aOver.equalsIgnoreAsciiCase( "cde" ) )
(-)thirdparty/libreoffice/3.3.3/patches/libreoffice-trinity.diff (-1 / +1 lines)
Lines 15761-15767 Link Here
15761
++
15761
++
15762
+ static bool is_kde4_desktop( Display* pDisplay )
15762
+ static bool is_kde4_desktop( Display* pDisplay )
15763
+ {
15763
+ {
15764
+     if ( NULL != getenv( "KDE_FULL_SESSION" ) )
15764
+     if ( NULL != getenv( "TDE_FULL_SESSION" ) )
15765
+@@ -265,6 +275,8 @@
15765
+@@ -265,6 +275,8 @@
15766
+         
15766
+         
15767
+         if ( aOver.equalsIgnoreAsciiCase( "cde" ) )
15767
+         if ( aOver.equalsIgnoreAsciiCase( "cde" ) )
(-)thirdparty/libreoffice/git_10_28_2011/patches/libreoffice-trinity.diff (-1 / +1 lines)
Lines 13705-13711 Link Here
13705
+
13705
+
13706
 static bool is_kde4_desktop( Display* pDisplay )
13706
 static bool is_kde4_desktop( Display* pDisplay )
13707
 {
13707
 {
13708
     if ( NULL != getenv( "KDE_FULL_SESSION" ) )
13708
     if ( NULL != getenv( "TDE_FULL_SESSION" ) )
13709
@@ -238,6 +247,8 @@ DESKTOP_DETECTOR_PUBLIC DesktopType get_desktop_environment()
13709
@@ -238,6 +247,8 @@ DESKTOP_DETECTOR_PUBLIC DesktopType get_desktop_environment()
13710
     {
13710
     {
13711
         OString aOver( pOverride );
13711
         OString aOver( pOverride );

Return to bug 860