summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.h.cmake2
-rw-r--r--src/kstreamripper.cpp5
2 files changed, 4 insertions, 3 deletions
diff --git a/config.h.cmake b/config.h.cmake
index 61ede3a..4064b66 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -1,7 +1,7 @@
#define VERSION "@VERSION@"
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
-#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
diff --git a/src/kstreamripper.cpp b/src/kstreamripper.cpp
index 344a099..57a27a7 100644
--- a/src/kstreamripper.cpp
+++ b/src/kstreamripper.cpp
@@ -41,7 +41,7 @@
#include <tdemessagebox.h>
#include <kstandarddirs.h>
#include <tdeversion.h>
-#include <ntqpopupmenu.h>
+#include <tqpopupmenu.h>
#include "kstreamripper.h"
#include "streampropertiesdlg.h"
@@ -307,7 +307,8 @@ void KStreamRipper::browseButtonClicked()
TQString openDest = KFileDialog::getExistingDirectory( TQDir::homeDirPath(),
this,
"Select Destination..." );
- m_destEdit->setText( openDest );
+ if ( !openDest.isEmpty() )
+ m_destEdit->setText( openDest );
}
void KStreamRipper::helpButtonClicked()